Rocky_Mountain_Vending/.pnpm-store/v10/files/df/574203475990dcca129c6dd201d27b22711c2418f0fec59a641b5222b1acf5002b800cd49e3b9512c01e3549038e6b7ebcdc1b174ef04d7e0530e0d12766fa
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

17 lines
647 B
Text

export declare enum RenderStage {
Static = 1,
Runtime = 2,
Dynamic = 3
}
export type NonStaticRenderStage = RenderStage.Runtime | RenderStage.Dynamic;
export declare class StagedRenderingController {
private abortSignal;
currentStage: RenderStage;
private runtimeStagePromise;
private dynamicStagePromise;
constructor(abortSignal?: AbortSignal | null);
advanceStage(stage: NonStaticRenderStage): void;
private getStagePromise;
waitForStage(stage: NonStaticRenderStage): Promise<void>;
delayUntilStage<T>(stage: NonStaticRenderStage, displayName: string | undefined, resolvedValue: T): Promise<T>;
}