UNPKG

@beenotung/tslib

Version:
5 lines (4 loc) 167 B
export declare type Consumer<A> = (a: A) => void; export declare type Supplier<A> = () => A; /**@deprecated*/ export declare type AsyncSupplier<A> = () => Promise<A>;