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