prc b6c02717e6 Upload complete no-internet building environment. | il y a 1 an | |
---|---|---|
.. | ||
out | il y a 1 an | |
package.json | il y a 1 an | |
readme.md | il y a 1 an |
Lazy value.
class Lazy<T> {
constructor(creator: () => Promise<T>)
readonly hasValue: boolean
value: Promise<T>
}