Rocky_Mountain_Vending/.pnpm-store/v10/files/58/58488e4ad5e0653b2e6c88fb8792b42517459659301f99cbd5020b13680dd5efb5fa668d22d8b9179fc97e25625b43f9b30f77d69d74b3499b7ab383133971
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

4 lines
451 B
Text

import { AsyncValidator, Validator } from 'fluentvalidation-ts';
import { FieldValues, Resolver } from 'react-hook-form';
export declare function fluentValidationResolver<TFieldValues extends FieldValues>(validator: Validator<TFieldValues>): Resolver<TFieldValues>;
export declare function fluentAsyncValidationResolver<TFieldValues extends FieldValues, TValidator extends AsyncValidator<TFieldValues>>(validator: TValidator): Resolver<TFieldValues>;