https://github.com/controlplane-com/types-ts
Control Plane TypeScript type definitions for type-safe API interactions
https://github.com/controlplane-com/types-ts
api-types controlplane npm-package openapi schema type-definitions types typescript
Last synced: about 1 month ago
JSON representation
Control Plane TypeScript type definitions for type-safe API interactions
- Host: GitHub
- URL: https://github.com/controlplane-com/types-ts
- Owner: controlplane-com
- License: mit
- Created: 2025-12-08T14:50:34.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2026-03-02T20:16:20.000Z (about 1 month ago)
- Last Synced: 2026-03-02T23:39:33.523Z (about 1 month ago)
- Topics: api-types, controlplane, npm-package, openapi, schema, type-definitions, types, typescript
- Language: TypeScript
- Homepage: https://controlplane.com
- Size: 124 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Control Plane Corp. TypeScript Schema
This is a collection of TypeScript interfaces designed to streamline and standardize the data structures used across projects that uses our [OpenAPI](https://console.cpln.io/openapi/core).
## Installation
```bash
npm install @controlplane/schema
```
## Usage
Import the interfaces from @controlplane/schema/interfaces and use them in your TypeScript or JavaScript projects:
```typescript
import { Base } from "@controlplane/schema/interfaces/base";
const example: Base = {
// ... your data
};
```