Rocky_Mountain_Vending/.pnpm-store/v10/files/d9/7ae9b59bd6ea68325946849a51f600a463a3352739498f71140c42186c3f94710ee93d446c32a42ef99283c52340982e761f9e88fa11c97ed44ded55988bef
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

18 lines
499 B
Text

import * as t from 'io-ts';
import {
FieldError,
FieldValues,
ResolverOptions,
ResolverResult,
} from 'react-hook-form';
export type Resolver = <T, TFieldValues extends FieldValues, TContext>(
codec: t.Decoder<FieldValues, T>,
) => (
values: TFieldValues,
_context: TContext | undefined,
options: ResolverOptions<TFieldValues>,
) => ResolverResult<TFieldValues>;
export type ErrorObject = Record<string, FieldError>;
export type FieldErrorWithPath = FieldError & { path: string };