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.

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