/** * Represents any function. */ export type AnyFunction = (...args: TArgs) => TReturnValue; /** * Represents JavaScript built-in types that behaves like "reference type" in other languages. * * @remarks For now, the "reference type" values are define as one of the following * * objects (excluding `null`) * * arrays * * functions * * symbols (including [shared symbols in the global symbol registry](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol#shared_symbols_in_the_global_symbol_registry)) */ export type ReferenceType = object | any[] | AnyFunction | symbol; export declare function isReferenceType(value?: unknown): value is ReferenceType; //# sourceMappingURL=referenceType.d.ts.map