Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

19
node_modules/@hookform/resolvers/nope/dist/nope.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import type { Resolver } from './types';
/**
* Creates a resolver for react-hook-form using Nope schema validation
* @param {NopeSchema} schema - The Nope schema to validate against
* @param {NopeSchemaOptions} [schemaOptions] - Optional Nope validation options
* @param {Object} resolverOptions - Additional resolver configuration
* @param {string} [resolverOptions.mode='async'] - Validation mode
* @returns {Resolver<NopeSchema>} A resolver function compatible with react-hook-form
* @example
* const schema = nope.object({
* name: nope.string().required(),
* age: nope.number().required()
* });
*
* useForm({
* resolver: nopeResolver(schema)
* });
*/
export declare const nopeResolver: Resolver;