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) 262 B
import {Type} from "./Type"; export default class AnyType implements Type { public serialize(): Object { return { type: 'AnyType' } } public static deserialize(raw: Object): AnyType { return new AnyType() } }