Files
aza/APP/nexus-remote/node_modules/lazy-val/out/main.d.ts
2026-03-25 14:14:07 +01:00

8 lines
173 B
TypeScript

export declare class Lazy<T> {
private _value;
private creator;
constructor(creator: () => Promise<T>);
readonly hasValue: boolean;
value: Promise<T>;
}