UNPKG

alinea

Version:
5 lines (4 loc) 110 B
export type Lazy<T> = T | (() => T); export declare namespace Lazy { function get<T>(lazy: Lazy<T>): T; }