UNPKG

@ibyar/core

Version:

Ibyar core, Implements Aurora's core functionality, low-level services, and utilities

11 lines 259 B
/** * send the class itself, not instance */ export interface Type<T> extends Function { new (...values: any): T; [key: PropertyKey]: any; } export interface AbstractType<T> extends Function { prototype: T; } //# sourceMappingURL=typeof.d.ts.map