UNPKG

@ayanaware/bento

Version:

Modular runtime framework designed to solve complex tasks

5 lines (4 loc) 147 B
/** * Similar to Typescripts global InstanceType<T> except not abstract */ export declare type InstanceType<T> = new (...args: Array<any>) => T;