Rocky_Mountain_Vending/.pnpm-store/v10/files/47/eb6f5c4cc8b34d542d58f6bc8730bbca5f69c59bb4a79216c475be97d51721b7e2d561add685f0d4b2f08faae2a3e042c7d5e763a3ed1bae5d6e142218d958
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
291 B
Text

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