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>
11 lines
391 B
Text
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 };
|