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>
12 lines
368 B
Text
12 lines
368 B
Text
/**
|
|
* Input:
|
|
* Error: Something went wrong
|
|
at funcName (/path/to/file.js:10:5)
|
|
at anotherFunc (/path/to/file.js:15:10)
|
|
|
|
* Output:
|
|
at funcName (/path/to/file.js:10:5)
|
|
at anotherFunc (/path/to/file.js:15:10)
|
|
*/
|
|
export declare function getStackWithoutErrorMessage(error: Error): string;
|
|
export declare function formatServerError(error: Error): void;
|