Rocky_Mountain_Vending/.pnpm-store/v10/files/13/428dc34f516aed59f7902365cc13096fdb170998df5f596534a4357ec6e79695b722530442a4d4c11c0f9c025fc4b0a6879d36d3fe3d697b5210a7df9efa19
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

2 lines
305 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>>;