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>
8 lines
462 B
Text
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;
|