nwex.de/util/guards.ts

2 lines
104 B
TypeScript

export type NonEmptyArray<T> = [T, ...T[]];
export type Constructor<T> = new(...args: Array<any>) => T;