Rocky_Mountain_Vending/.pnpm-store/v10/files/fd/b7b6f0969bf9cde6b6e236bb977f5a325200284ff88162066e02b56e74fa3f2834d941409b2cd7b896a774edad7b1de58173d151e58b2de2efa56f9d54f446
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
605 B
Text

import { FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form';
import { z } from 'zod';
export type Resolver = <T extends z.Schema<any, any>>(schema: T, schemaOptions?: Partial<z.ParseParams>, factoryOptions?: {
/**
* @default async
*/
mode?: 'async' | 'sync';
/**
* Return the raw input values rather than the parsed values.
* @default false
*/
raw?: boolean;
}) => <TFieldValues extends FieldValues, TContext>(values: TFieldValues, context: TContext | undefined, options: ResolverOptions<TFieldValues>) => Promise<ResolverResult<TFieldValues>>;