Rocky_Mountain_Vending/.pnpm-store/v10/files/07/4611a707ae23f39772770f78f739a392a0eab8e4eb3b6e297d0a1d81a417f030859a49e1ec3d9c184d3b266bfd8ec667ad83d43097bcc2d654f74dd0c69edb
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

11 lines
640 B
Text

import type { NonStaticRenderStage } from './app-render/staged-rendering';
import type { RequestStore } from './app-render/work-unit-async-storage.external';
export declare function isHangingPromiseRejectionError(err: unknown): err is HangingPromiseRejectionError;
declare class HangingPromiseRejectionError extends Error {
readonly route: string;
readonly expression: string;
readonly digest = "HANGING_PROMISE_REJECTION";
constructor(route: string, expression: string);
}
export declare function makeDevtoolsIOAwarePromise<T>(underlying: T, requestStore: RequestStore, stage: NonStaticRenderStage): Promise<T>;
export {};