Rocky_Mountain_Vending/.pnpm-store/v10/files/6d/7ef09c0ea23abb04ba0e6e9b7d150c4a81d9312a96df88d072c3d6b295552bfe3a360b607ead3b4ad12d0325ff346ae11be7423b8dd3d118d43b9631b3f7f4
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
257 B
Text

import type { Callable, RetryifyAsyncOptions, RetryifyAsyncCallOptions } from './types.js';
declare const retryifyAsync: <T extends Callable>(fn: T, options: RetryifyAsyncOptions) => ((options: RetryifyAsyncCallOptions) => T);
export default retryifyAsync;