@ng-doc/core
Advanced tools
Comparing version 16.1.1 to 16.2.0
{ | ||
"name": "@ng-doc/core", | ||
"version": "16.1.1", | ||
"version": "16.2.0", | ||
"type": "commonjs", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
@@ -1,4 +0,2 @@ | ||
export type Constructor<T> = new (...args: any[]) => T; | ||
export type AbstractConstructor<T> = Function & { | ||
prototype: T; | ||
}; | ||
export type Constructor<T = any> = new (...args: any[]) => T; | ||
export type AbstractConstructor<T = any> = abstract new (...args: any[]) => T; |
47359
824