UNPKG

@controlplane/schema

Version:

Control Plane Corporation Schema

22 lines (14 loc) 535 B
# Control Plane Corp. 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 }; ```