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
326 B
Text
8 lines
326 B
Text
declare const DYNAMIC_ERROR_CODE = "DYNAMIC_SERVER_USAGE";
|
|
export declare class DynamicServerError extends Error {
|
|
readonly description: string;
|
|
digest: typeof DYNAMIC_ERROR_CODE;
|
|
constructor(description: string);
|
|
}
|
|
export declare function isDynamicServerError(err: unknown): err is DynamicServerError;
|
|
export {};
|