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
367 B
Text
14 lines
No EOL
367 B
Text
/**
|
|
* Helper functions to schedule and unschedule microtasks.
|
|
*/
|
|
export declare const Immediate: {
|
|
setImmediate(cb: () => void): number;
|
|
clearImmediate(handle: number): void;
|
|
};
|
|
/**
|
|
* Used for internal testing purposes only. Do not export from library.
|
|
*/
|
|
export declare const TestTools: {
|
|
pending(): number;
|
|
};
|
|
//# sourceMappingURL=Immediate.d.ts.map |