UNPKG

roblox-ts

Version:

A TypeScript-to-Luau Compiler for Roblox

9 lines (8 loc) 185 B
export declare class Lazy<T> { private readonly getValue; private isInitialized; private value; constructor(getValue: () => T); get(): T; set(value: T): void; }