jarvis/node_modules/lazy-val
2026-04-13 22:01:33 +02:00
..
out first commit 2026-04-13 22:01:33 +02:00
package.json first commit 2026-04-13 22:01:33 +02:00
readme.md first commit 2026-04-13 22:01:33 +02:00

lazy-val

Lazy value.

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