UNPKG

airship-server

Version:

Airship is a framework for Node.JS & TypeScript that helps you to write big, scalable and maintainable API servers.

9 lines (8 loc) 263 B
import ClassField from "./ClassField"; export default class ClassScheme { readonly name: string; readonly fields: ClassField[]; constructor(name: string, fields: ClassField[]); serialize(): Object; static deserialize(raw: any): ClassScheme; }