UNPKG
@dugongjs/core
Version:
latest (0.0.10)
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
@dugongjs/core
/
types
/
remove-abstract.type.d.ts
2 lines
(1 loc)
•
213 B
TypeScript
View Raw
1
2
export type RemoveAbstract<
TAbstractClass extends
abstract
new
(
...
args
: any[]
)
=> any> =
TAbstractClass extends
abstract
new
(
...
args
: infer TArgs
)
=> infer TInstance ?
new
(...
args
: TArgs) => TInstance : never;