Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
No EOL
559 B
Text
14 lines
No EOL
559 B
Text
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 |