prc b6c02717e6 Upload complete no-internet building environment. | 1 سال پیش | |
---|---|---|
.. | ||
out | 1 سال پیش | |
package.json | 1 سال پیش | |
readme.md | 1 سال پیش |
Lazy value.
class Lazy<T> {
constructor(creator: () => Promise<T>)
readonly hasValue: boolean
value: Promise<T>
}