@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
15 lines (14 loc) • 590 B
TypeScript
/**
* Class used to provide helper for timing
*/
export declare class TimingTools {
/**
* Execute a function after the current execution block
* @param action defines the action to execute after the current execution block
*/
static SetImmediate(action: () => void): void;
}
/**
* @internal
*/
export declare const _RetryWithInterval: (condition: () => boolean, onSuccess: () => void, onError?: (e?: any, isTimeout?: boolean) => void, step?: number, maxTimeout?: number, checkConditionOnCall?: boolean, additionalStringOnTimeout?: string) => (() => void) | null;