Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/0dc8904fb4903d1e713fba6fa256c6a636b1d49a73997262cb4d7cbe07691d6c785e48fa203c0b61a9255dce302a2610f5ac68bde611b19589f841da257841
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

26 lines
770 B
Text

export declare class ERR_INVALID_ARG_VALUE extends TypeError {
code: string;
constructor(name: string, value: unknown, reason: string);
}
export declare class ERR_INVALID_ARG_TYPE extends TypeError {
code: string;
constructor(name: string, expected: unknown, actual: unknown);
}
export declare class ERR_INVALID_URL extends TypeError {
code: string;
input: string;
base?: string;
constructor(input: string, base?: string);
}
export declare class ERR_INVALID_URL_SCHEME extends TypeError {
code: string;
constructor(expected: string);
}
export declare class ERR_INVALID_FILE_URL_PATH extends TypeError {
code: string;
constructor(path: string);
}
export declare class ERR_INVALID_FILE_URL_HOST extends TypeError {
code: string;
constructor(host: string);
}