diff --git a/packages/vee-validate/src/useForm.ts b/packages/vee-validate/src/useForm.ts index fcaed6f32..77126e093 100644 --- a/packages/vee-validate/src/useForm.ts +++ b/packages/vee-validate/src/useForm.ts @@ -37,7 +37,6 @@ import { FieldState, GenericFormValues, TypedSchema, - YupSchema, } from './types'; import { getFromPath, @@ -61,10 +60,10 @@ import { isCallable } from '../../shared'; export interface FormOptions { validationSchema?: MaybeRef< - | YupSchema | TypedSchema | Record | undefined + | any >; initialValues?: MaybeRef; initialErrors?: Record;