@xylabs/static-implements
Version:
Base functionality used throughout XY Labs TypeScript/JavaScript libraries
7 lines • 323 B
TypeScript
/**
* Annotation to decorate classes which implement static methods
* @returns The decorated class requiring it to implement
* the members of the the type as static properties/methods
*/
export declare function staticImplements<T>(): <U extends T>(constructor: U) => void;
//# sourceMappingURL=staticImplements.d.ts.map