minishouyin/node_modules/lazy-val
2025-11-12 11:35:57 +08:00
..
out first commit 2025-11-12 11:35:57 +08:00
package.json first commit 2025-11-12 11:35:57 +08:00
readme.md first commit 2025-11-12 11:35:57 +08:00

lazy-val

Lazy value.

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