Rocky_Mountain_Vending/.pnpm-store/v10/files/ad/2b483f1a8441c99525f2bcf2dfa38b1bab73e25880c079b46ad1426680ccaaeaabac03bc72f0d4cf3918f995b6a3012fcc0916a3a1ae0766dc792442690cb6
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

3 lines
295 B
Text

import type { Callable, CallableWithOverloadsWithAlternativeReturn, AttemptifyAsyncOptions } from './types.js';
declare const attemptifyAsync: <T extends Callable, U>(fn: T, options: AttemptifyAsyncOptions<U>) => CallableWithOverloadsWithAlternativeReturn<T, U>;
export default attemptifyAsync;