frontend/.pnpm-store/v3/files/aa/84ff18089a519a863d03633e4fda9db5956f44d3d7569f82c1dcf8033c91bb0f8d4509fcefa018db171eb7bb8935c2d3f781bcb98f90a01b5c8e408e382ac2

14 lines
559 B
Plaintext

import type { TimerHandle } from './timerHandle';
declare type SetTimeoutFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;
declare type ClearTimeoutFunction = (handle: TimerHandle) => void;
interface TimeoutProvider {
setTimeout: SetTimeoutFunction;
clearTimeout: ClearTimeoutFunction;
delegate: {
setTimeout: SetTimeoutFunction;
clearTimeout: ClearTimeoutFunction;
} | undefined;
}
export declare const timeoutProvider: TimeoutProvider;
export {};
//# sourceMappingURL=timeoutProvider.d.ts.map