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>
19 lines
645 B
Text
19 lines
645 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>;
|