UNPKG

@beenotung/tslib

Version:
6 lines (5 loc) 164 B
/** * Created by beenotung on 5/5/17. */ export type SupplierOrData<A> = A | (() => A); export declare function unwrapSupplierOrData<A>(x: SupplierOrData<A>): A;