Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/9e432ffb45b2d0508b40af6a3d3e1934990e3333248fd5ff7e8db94ac31ca413914a2cabfeeec6bf53accd74bff9fd2ddcdf0afea6ef93aeb0bfaf1726f874
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

8 lines
462 B
Text

/** An error that should be thrown when we want to bail out to client-side rendering. */
export declare class BailoutToCSRError extends Error {
readonly reason: string;
readonly digest = "BAILOUT_TO_CLIENT_SIDE_RENDERING";
constructor(reason: string);
}
/** Checks if a passed argument is an error that is thrown if we want to bail out to client-side rendering. */
export declare function isBailoutToCSRError(err: unknown): err is BailoutToCSRError;