UNPKG

di-controls

Version:
5 lines (4 loc) 127 B
export type AbstractConstructor<T> = Function & { prototype: T; }; export type Constructor<T> = new (...args: any[]) => T;