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