Rocky_Mountain_Vending/.pnpm-store/v10/files/84/df5165975fd1e85f2bedc671178fcb4dbdffad1f9b08114474995e5b9a0600b06009afba515db3854a59006077f36f96e15af7e71351d827aa3d17d541844a
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

15 lines
450 B
Text

/**
* Always throws an error with the given `exceptionCtor` and other arguments.
* This is only called from an error handling code path.
*
* @internal
*/
export declare const throwDefaultError: ({ output, parsedBody, exceptionCtor, errorCode }: any) => never;
/**
* @internal
*
* Creates {@link throwDefaultError} with bound ExceptionCtor.
*/
export declare const withBaseException: (ExceptionCtor: {
new (...args: any): any;
}) => any;