UNPKG

airship-server

Version:

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

8 lines (7 loc) 212 B
import { Type } from "./Type"; export default class CustomType implements Type { readonly name: string; constructor(name: string); serialize(): Object; static deserialize(raw: any): CustomType; }