UNPKG

@beenotung/tslib

Version:
4 lines (3 loc) 126 B
export type Consumer<A> = (a: A) => void; export type Supplier<A> = () => A; export type AsyncSupplier<A> = () => Promise<A>;