@typed-tabletop-simulator/lib
Version:
Library with some helping modules for working with Tabletop Simulator
8 lines (7 loc) • 388 B
TypeScript
/** @noSelfInFile */
export declare const waitFrames: (frames?: number) => Promise<void>;
export declare const waitTime: (time: number) => Promise<void>;
type Condition = (this: void) => boolean;
export declare const waitCondition: (condition: Condition, timeout?: number) => Promise<void>;
export declare const waitUntilLoaded: <T extends TTSObject>(object: T) => Promise<T>;
export {};