UNPKG

@trophyso/node

Version:
5 lines (4 loc) 162 B
export declare type Supplier<T> = T | Promise<T> | (() => T | Promise<T>); export declare const Supplier: { get: <T>(supplier: Supplier<T>) => Promise<T>; };