1.0.2 • Published 6 months ago

@controlplane/schema v1.0.2

Weekly downloads
-
License
-
Repository
-
Last release
6 months ago

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.

Installation

npm install @controlplane/schema

Usage

Import the interfaces from @controlplane/schema/interfaces and use them in your TypeScript or JavaScript projects:

import { Base } from "@controlplane/schema/interfaces/base";

const example: Base = {
  // ... your data
};