@controlplane/schema
Version:
Control Plane Corporation Schema
23 lines (14 loc) • 547 B
Markdown
# 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
};
```