Files
Remote-Control-Center/mc_test/node_modules/lazy-val/readme.md
2025-11-25 09:56:15 +03:00

11 lines
158 B
Markdown
Executable File

## lazy-val
Lazy value.
```typescript
class Lazy<T> {
constructor(creator: () => Promise<T>)
readonly hasValue: boolean
value: Promise<T>
}
```