File tree 2 files changed +7
-2
lines changed
packages/vee-validate/src/types
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' vee-validate ' : patch
3
+ ---
4
+
5
+ fix: export ModelessBinds type closes #4478
Original file line number Diff line number Diff line change @@ -265,11 +265,11 @@ export interface PrivateFormContext<TValues extends GenericObject = GenericObjec
265
265
isFieldValid < TPath extends Path < TValues > > ( path : TPath ) : boolean ;
266
266
}
267
267
268
- interface ComponentModellessBinds {
268
+ export interface ComponentModellessBinds {
269
269
onBlur : ( ) => void ;
270
270
}
271
271
272
- type ComponentModelBinds < TValue = any , TModel extends string = 'modelValue' > = ComponentModellessBinds & {
272
+ export type ComponentModelBinds < TValue = any , TModel extends string = 'modelValue' > = ComponentModellessBinds & {
273
273
[ TKey in `onUpdate:${TModel } `] : ( value : TValue ) => void ;
274
274
} ;
275
275
You can’t perform that action at this time.
0 commit comments