Rocky_Mountain_Vending/.pnpm-store/v10/files/8b/3580529328a357ee5fb254ab1b187b46bd4b055c469ca24df87612f85fb1185253bcb16218c5455968380763bb5e0b351e77e2918fcf088d98bdc086ff3049
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
571 B
Text

import { FieldValues, Resolver } from 'react-hook-form';
import * as Yup from 'yup';
export declare function yupResolver<TFieldValues extends FieldValues>(schema: Yup.ObjectSchema<TFieldValues> | ReturnType<typeof Yup.lazy<Yup.ObjectSchema<TFieldValues>>>, schemaOptions?: Parameters<(typeof schema)['validate']>[1], resolverOptions?: {
/**
* @default async
*/
mode?: 'async' | 'sync';
/**
* Return the raw input values rather than the parsed values.
* @default false
*/
raw?: boolean;
}): Resolver<Yup.InferType<typeof schema>>;