@xstd/constructor-types
v1.0.2
Published
Typescript class constructor types
Readme
@xstd/constructor-types
Typescript class constructor types.
📦 Installation
yarn add @xstd/constructor-types
# or
npm install @xstd/constructor-types --save📜 Documentation
type Constructor<GArguments extends readonly any[], GInstance> = new (
...args: GArguments
) => GInstance;type AbstractConstructor<GArguments extends readonly any[], GInstance> = abstract new (
...args: GArguments
) => GInstance;