Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/26eda1ffa78ae2c7d5620729ee397be2afab4e899603f60f26bf6067b02300060ff81853ba5d44940162f898f6dbf0f5d6f1fa2f2479e8c5c29fc1ff2d6f62
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

12 lines
408 B
Text

import { Schema } from 'effect';
import { ParseOptions } from 'effect/SchemaAST';
import { FieldValues, ResolverOptions, ResolverResult } from 'react-hook-form';
export type Resolver = <A extends FieldValues, I, TContext>(
schema: Schema.Schema<A, I>,
config?: ParseOptions,
) => (
values: FieldValues,
_context: TContext | undefined,
options: ResolverOptions<A>,
) => Promise<ResolverResult<A>>;