Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/7ca28e254582dacd21ce4e24974fbbe5bb3301e7224754502c6a54346dd7e9ee294647268429dd5f344c0787ae144b962e59f56321ba880bde253756556e83
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
569 B
Text

import type { TimerHandle } from './timerHandle';
declare type SetImmediateFunction = (handler: () => void, ...args: any[]) => TimerHandle;
declare type ClearImmediateFunction = (handle: TimerHandle) => void;
interface ImmediateProvider {
setImmediate: SetImmediateFunction;
clearImmediate: ClearImmediateFunction;
delegate: {
setImmediate: SetImmediateFunction;
clearImmediate: ClearImmediateFunction;
} | undefined;
}
export declare const immediateProvider: ImmediateProvider;
export {};
//# sourceMappingURL=immediateProvider.d.ts.map