export type Nil = null | undefined; export type Maybe = T | Nil; export type Newable = new (...args: A) => T; export type Extends = Function & { prototype: T; }; //# sourceMappingURL=types.d.ts.map