/** * @module types */ /** * Any `function` returning type `T`. `T` defaults to `unknown` when not explicitly supplied. */ export type AnyFunction = (...args: any[]) => T; /** * A constructor for any type `T`. `T` defaults to `object` when not explicitly supplied. */ export type AnyConstructor = new (...args: any[]) => T;