Rocky_Mountain_Vending/.pnpm-store/v10/files/04/fe75ff8956ddd5dd92b99438e9b9e6813d119164d78effd6cf9f39e0c1c6496996a4842ef518e9dd4417ce5cb4abeec287578a03053c46ee7e0d862dfafb21
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

14 lines
No EOL
573 B
Text

import type { TimerHandle } from './timerHandle';
declare type SetIntervalFunction = (handler: () => void, timeout?: number, ...args: any[]) => TimerHandle;
declare type ClearIntervalFunction = (handle: TimerHandle) => void;
interface IntervalProvider {
setInterval: SetIntervalFunction;
clearInterval: ClearIntervalFunction;
delegate: {
setInterval: SetIntervalFunction;
clearInterval: ClearIntervalFunction;
} | undefined;
}
export declare const intervalProvider: IntervalProvider;
export {};
//# sourceMappingURL=intervalProvider.d.ts.map