Files
Remote-Control-Center/mc_test/node_modules/lazy-val
2025-11-25 09:56:15 +03:00
..
2025-11-25 09:56:15 +03:00
2025-11-25 09:56:15 +03:00
2025-11-25 09:56:15 +03:00

lazy-val

Lazy value.

class Lazy<T> {
    constructor(creator: () => Promise<T>)
    readonly hasValue: boolean
    value: Promise<T>
}