blob: 9a671016931ee7ab7f0f494fef7516530d1ceb6f [file] [log] [blame]
/**
* Constructor type.
* @interface Constructor
* @extends Function
* @template T
* @tstype new(...params: any[]): T; prototype: T;
*/
/**
* Properties type.
* @typedef Properties
* @template T
* @type {Object.<string,*>}
* @tstype { [P in keyof T]?: T[P] }
*/