mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
/**
|
|
* ensures we can use 'typeof T' as a type
|
|
* more details:
|
|
* https://github.com/Microsoft/TypeScript/issues/204#issuecomment-257722306
|
|
*/
|
|
export type GenericConstructor<T> = new (...args: any[]) => T ;
|