Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/493c0d91e0ea173241cbcd478e3e5db80fc201ab78b57871e065cca328b6741bab8051d017d14e84da1175f9f3f8f2ce9bbb1947c14dc7a0f449a431cb92a5
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
541 B
Text

import { VineValidator } from '@vinejs/vine';
import { ValidationOptions } from '@vinejs/vine/build/src/types';
import { FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form';
export type Resolver = <T extends VineValidator<any, any>>(
schema: T,
schemaOptions?: ValidationOptions<any>,
resolverOptions?: { raw?: boolean },
) => <TFieldValues extends FieldValues, TContext>(
values: TFieldValues,
context: TContext | undefined,
options: ResolverOptions<TFieldValues>,
) => Promise<ResolverResult<TFieldValues>>;