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

13 lines
327 B
Text

import type {
FieldValues,
ResolverOptions,
ResolverResult,
} from 'react-hook-form';
export type Resolver = (
schema: any,
) => <TFieldValues extends FieldValues, TContext>(
values: TFieldValues,
context: TContext | undefined,
options: ResolverOptions<TFieldValues>,
) => Promise<ResolverResult<TFieldValues>>;