Rocky_Mountain_Vending/.pnpm-store/v10/files/5c/1214fef328913184cc163a169fec5770ed91a7a2e811f23bef9974a459c541217997c4658771f91f07270f6f603b2acc7e2aad7e7d57c5629f1e7c58114ab4
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

9 lines
638 B
Text

import type { NopeObject } from 'nope-validator/lib/cjs/NopeObject';
import type { FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form';
type ValidateOptions = Parameters<NopeObject['validate']>[2];
type Context = Parameters<NopeObject['validate']>[1];
export type Resolver = <T extends NopeObject>(schema: T, schemaOptions?: ValidateOptions, resolverOptions?: {
mode?: 'async' | 'sync';
rawValues?: boolean;
}) => <TFieldValues extends FieldValues, TContext extends Context>(values: TFieldValues, context: TContext | undefined, options: ResolverOptions<TFieldValues>) => ResolverResult<TFieldValues>;
export {};