Files
2026-02-27 22:46:14 +01:00
..
2026-02-27 22:46:14 +01:00
2026-02-27 22:46:14 +01:00
2026-02-27 22:46:14 +01:00

lazy-val

Lazy value.

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