@itwin/frontend-devtools
Version:
Debug menu and supporting UI widgets
16 lines • 660 B
TypeScript
/** @packageDocumentation
* @module Tools
*/
import { BeDuration } from "@itwin/core-bentley";
import { Tool } from "@itwin/core-frontend";
/** Changes the [IModelApp.animationInterval]($frontend). Specify the interval in integer milliseconds; or pass any string not parseable as an integer to disable the animation interval callback.
* @beta
*/
export declare class AnimationIntervalTool extends Tool {
static toolId: string;
static get minArgs(): number;
static get maxArgs(): number;
run(interval?: BeDuration): Promise<boolean>;
parseAndRun(...args: string[]): Promise<boolean>;
}
//# sourceMappingURL=AnimationIntervalTool.d.ts.map