UNPKG

167 BTypeScriptView Raw
1export declare type Consumer<A> = (a: A) => void;
2export declare type Supplier<A> = () => A;
3/**@deprecated*/
4export declare type AsyncSupplier<A> = () => Promise<A>;