UNPKG

airship-server

Version:

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

10 lines (9 loc) 295 B
import { Type } from "../types/Type"; export default class ClassField { readonly name: string; readonly type: Type; readonly description: string; constructor(name: string, type: Type, description: string); serialize(): Object; static deserialize(raw: any): ClassField; }