2 lines
104 B
TypeScript
2 lines
104 B
TypeScript
export type NonEmptyArray<T> = [T, ...T[]];
|
|
export type Constructor<T> = new(...args: Array<any>) => T;
|