7
7
export { }
8
8
declare global {
9
9
const EffectScope : typeof import ( 'vue' ) [ 'EffectScope' ]
10
+ const FieldContextKey : typeof import ( 'vee-validate' ) [ 'FieldContextKey' ]
11
+ const FormContextKey : typeof import ( 'vee-validate' ) [ 'FormContextKey' ]
12
+ const acceptHMRUpdate : typeof import ( 'pinia' ) [ 'acceptHMRUpdate' ]
10
13
const computed : typeof import ( 'vue' ) [ 'computed' ]
14
+ const configure : typeof import ( 'vee-validate' ) [ 'configure' ]
11
15
const createApp : typeof import ( 'vue' ) [ 'createApp' ]
16
+ const createPinia : typeof import ( 'pinia' ) [ 'createPinia' ]
12
17
const customRef : typeof import ( 'vue' ) [ 'customRef' ]
13
18
const defineAsyncComponent : typeof import ( 'vue' ) [ 'defineAsyncComponent' ]
14
19
const defineComponent : typeof import ( 'vue' ) [ 'defineComponent' ]
20
+ const defineRule : typeof import ( 'vee-validate' ) [ 'defineRule' ]
21
+ const defineStore : typeof import ( 'pinia' ) [ 'defineStore' ]
15
22
const effectScope : typeof import ( 'vue' ) [ 'effectScope' ]
23
+ const getActivePinia : typeof import ( 'pinia' ) [ 'getActivePinia' ]
16
24
const getCurrentInstance : typeof import ( 'vue' ) [ 'getCurrentInstance' ]
17
25
const getCurrentScope : typeof import ( 'vue' ) [ 'getCurrentScope' ]
18
26
const h : typeof import ( 'vue' ) [ 'h' ]
@@ -21,6 +29,11 @@ declare global {
21
29
const isReactive : typeof import ( 'vue' ) [ 'isReactive' ]
22
30
const isReadonly : typeof import ( 'vue' ) [ 'isReadonly' ]
23
31
const isRef : typeof import ( 'vue' ) [ 'isRef' ]
32
+ const mapActions : typeof import ( 'pinia' ) [ 'mapActions' ]
33
+ const mapGetters : typeof import ( 'pinia' ) [ 'mapGetters' ]
34
+ const mapState : typeof import ( 'pinia' ) [ 'mapState' ]
35
+ const mapStores : typeof import ( 'pinia' ) [ 'mapStores' ]
36
+ const mapWritableState : typeof import ( 'pinia' ) [ 'mapWritableState' ]
24
37
const markRaw : typeof import ( 'vue' ) [ 'markRaw' ]
25
38
const nextTick : typeof import ( 'vue' ) [ 'nextTick' ]
26
39
const onActivated : typeof import ( 'vue' ) [ 'onActivated' ]
@@ -45,9 +58,12 @@ declare global {
45
58
const ref : typeof import ( 'vue' ) [ 'ref' ]
46
59
const resolveComponent : typeof import ( 'vue' ) [ 'resolveComponent' ]
47
60
const resolveDirective : typeof import ( 'vue' ) [ 'resolveDirective' ]
61
+ const setActivePinia : typeof import ( 'pinia' ) [ 'setActivePinia' ]
62
+ const setMapStoreSuffix : typeof import ( 'pinia' ) [ 'setMapStoreSuffix' ]
48
63
const shallowReactive : typeof import ( 'vue' ) [ 'shallowReactive' ]
49
64
const shallowReadonly : typeof import ( 'vue' ) [ 'shallowReadonly' ]
50
65
const shallowRef : typeof import ( 'vue' ) [ 'shallowRef' ]
66
+ const storeToRefs : typeof import ( 'pinia' ) [ 'storeToRefs' ]
51
67
const toRaw : typeof import ( 'vue' ) [ 'toRaw' ]
52
68
const toRef : typeof import ( 'vue' ) [ 'toRef' ]
53
69
const toRefs : typeof import ( 'vue' ) [ 'toRefs' ]
@@ -57,13 +73,33 @@ declare global {
57
73
const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
58
74
const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
59
75
const useCssVars : typeof import ( 'vue' ) [ 'useCssVars' ]
76
+ const useField : typeof import ( 'vee-validate' ) [ 'useField' ]
77
+ const useFieldArray : typeof import ( 'vee-validate' ) [ 'useFieldArray' ]
78
+ const useFieldError : typeof import ( 'vee-validate' ) [ 'useFieldError' ]
79
+ const useFieldValue : typeof import ( 'vee-validate' ) [ 'useFieldValue' ]
80
+ const useForm : typeof import ( 'vee-validate' ) [ 'useForm' ]
81
+ const useFormErrors : typeof import ( 'vee-validate' ) [ 'useFormErrors' ]
82
+ const useFormValues : typeof import ( 'vee-validate' ) [ 'useFormValues' ]
60
83
const useId : typeof import ( 'vue' ) [ 'useId' ]
84
+ const useIsFieldDirty : typeof import ( 'vee-validate' ) [ 'useIsFieldDirty' ]
85
+ const useIsFieldTouched : typeof import ( 'vee-validate' ) [ 'useIsFieldTouched' ]
86
+ const useIsFieldValid : typeof import ( 'vee-validate' ) [ 'useIsFieldValid' ]
87
+ const useIsFormDirty : typeof import ( 'vee-validate' ) [ 'useIsFormDirty' ]
88
+ const useIsFormTouched : typeof import ( 'vee-validate' ) [ 'useIsFormTouched' ]
89
+ const useIsFormValid : typeof import ( 'vee-validate' ) [ 'useIsFormValid' ]
90
+ const useIsSubmitting : typeof import ( 'vee-validate' ) [ 'useIsSubmitting' ]
61
91
const useLink : typeof import ( 'vue-router' ) [ 'useLink' ]
62
92
const useModel : typeof import ( 'vue' ) [ 'useModel' ]
93
+ const useResetForm : typeof import ( 'vee-validate' ) [ 'useResetForm' ]
63
94
const useRoute : typeof import ( 'vue-router' ) [ 'useRoute' ]
64
95
const useRouter : typeof import ( 'vue-router' ) [ 'useRouter' ]
65
96
const useSlots : typeof import ( 'vue' ) [ 'useSlots' ]
97
+ const useSubmitCount : typeof import ( 'vee-validate' ) [ 'useSubmitCount' ]
98
+ const useSubmitForm : typeof import ( 'vee-validate' ) [ 'useSubmitForm' ]
66
99
const useTemplateRef : typeof import ( 'vue' ) [ 'useTemplateRef' ]
100
+ const useValidateField : typeof import ( 'vee-validate' ) [ 'useValidateField' ]
101
+ const useValidateForm : typeof import ( 'vee-validate' ) [ 'useValidateForm' ]
102
+ const validate : typeof import ( 'vee-validate' ) [ 'validate' ]
67
103
const watch : typeof import ( 'vue' ) [ 'watch' ]
68
104
const watchEffect : typeof import ( 'vue' ) [ 'watchEffect' ]
69
105
const watchPostEffect : typeof import ( 'vue' ) [ 'watchPostEffect' ]
0 commit comments