/** * Timers that can be overridden with platform specific implementations * that ensure that they are fired. These should be used when it is critical * that the timer fires on time. */ export default class CriticalTimers { static setTimeout: (...args: Parameters) => ReturnType; static setInterval: (...args: Parameters) => ReturnType; static clearTimeout: (...args: Parameters) => ReturnType; static clearInterval: (...args: Parameters) => ReturnType; } //# sourceMappingURL=timers.d.ts.map