main.d.ts 173 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 export declare class Lazy<T> { private _value; private creator; constructor(creator: () => Promise<T>); readonly hasValue: boolean; value: Promise<T>; }