Control Plane Corporation Schema
npm install @controlplane/schemaThis is a collection of TypeScript interfaces designed to streamline and standardize the data structures used across projects that uses our OpenAPI.
``bash`
npm install @controlplane/schema
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
};
``