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
569 B
Text
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 |