Rocky_Mountain_Vending/.pnpm-store/v10/files/73/5e0654c3d563247b9a760fd775f2bacaa228df93ce6b9e4561043efac39f9d1f7b20fc0b8cc93a01f0fe1e1d6948b7abaaa70e542d590a524e09071bf611d4
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

11 lines
391 B
Text

declare const ATTEMPTIFY_CHANGE_ERROR_OPTIONS: {
onError: (error: unknown) => undefined;
};
declare const ATTEMPTIFY_NOOP_OPTIONS: {
onError: () => undefined;
};
declare const IS_USER_ROOT: boolean;
declare const RETRYIFY_OPTIONS: {
isRetriable: (error: unknown) => boolean;
};
export { ATTEMPTIFY_CHANGE_ERROR_OPTIONS, ATTEMPTIFY_NOOP_OPTIONS, IS_USER_ROOT, RETRYIFY_OPTIONS };