Rocky_Mountain_Vending/.pnpm-store/v10/files/2e/910c5580fb742220b9b1357562e1d22cfbe7e8490dbcc32a4d0969a80afe6d44c9cb937fb570f94ebd7e820c2ef228b199c77f4c2966de818bf05a47ebf12b
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

8 lines
706 B
Text

import { FieldName, FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form';
import * as Vest from 'vest';
export type ICreateResult<TValues extends FieldValues = FieldValues, TContext = any> = ReturnType<typeof Vest.create<any, any, (values: TValues, names?: FieldName<TValues>[], context?: TContext) => void>>;
export type Resolver = <TValues extends FieldValues, TContext>(schema: ICreateResult<TValues, TContext>, schemaOptions?: never, factoryOptions?: {
mode?: 'async' | 'sync';
rawValues?: boolean;
}) => (values: TValues, context: TContext | undefined, options: ResolverOptions<TValues>) => Promise<ResolverResult<TValues>>;
export type VestErrors = Record<string, string[]>;