UNPKG

@typed-tabletop-simulator/lib

Version:
8 lines (7 loc) 388 B
/** @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 {};