UNPKG

airship-server

Version:

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

13 lines (11 loc) 278 B
import {Type} from "./Type"; export default class BooleanType implements Type { public serialize(): Object { return { type: 'BooleanType' } } public static deserialize(raw: Object): BooleanType { return new BooleanType() } }