Rocky_Mountain_Vending/.pnpm-store/v10/files/61/c444c6a8c66a49e49712ba39ccc0c025c7f695251d887917dad57deb95bc4146549413e564a39d04ce19970724c3e46664ca63c31243bc912a1f2d4185ff44
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

7 lines
274 B
Text

declare const Handlers: {
isChangeErrorOk: (error: unknown) => boolean;
isNodeError: (error: unknown) => error is NodeJS.ErrnoException;
isRetriableError: (error: unknown) => boolean;
onChangeError: (error: unknown) => undefined;
};
export default Handlers;