Rocky_Mountain_Vending/.pnpm-store/v10/files/76/bcb1a799d31f26851fa9461525ca359db5409e0587c7e8e3f9b82787e7b7ec40227f2bbf4a30566b2e647916edec9d11d33257d109336a9b8a7825e2c00118
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

7 lines
479 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;
};