Repository URL to install this package:
Version:
2.0.11-7 ▾
|
notion-desktop
/
usr
/
lib
/
notion-desktop
/
resources
/
app
/
node_modules
/
lazy-val
/
out
/
main.d.ts
|
---|
export declare class Lazy<T> {
private _value;
private creator;
constructor(creator: () => Promise<T>);
readonly hasValue: boolean;
value: Promise<T>;
}