UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

10 lines (9 loc) 273 B
export interface IIntervalCheckLoop { start(options: { checkFunction: () => boolean; onChange: Function; delayMs?: number; }): any; stop(checkId: any): void; } export declare const StandardIntervalCheckLoop: IIntervalCheckLoop;