Repository URL to install this package:
Version:
2.0.11-8 ▾
|
.. |
out |
package.json |
readme.md |
Lazy value.
class Lazy<T> { constructor(creator: () => Promise<T>) readonly hasValue: boolean value: Promise<T> }