1
1
export { }
2
2
declare global {
3
3
const EffectScope : typeof import ( 'vue' ) [ 'EffectScope' ]
4
+ const SET_TITLE : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonTypes' ) [ 'SET_TITLE' ]
5
+ const common : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/index' ) [ 'default' ]
6
+ const commonActions : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonActions' ) [ 'default' ]
7
+ const commonGetters : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonGetters' ) [ 'default' ]
8
+ const commonMutations : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonMutations' ) [ 'default' ]
9
+ const commonState : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonState' ) [ 'default' ]
4
10
const computed : typeof import ( 'vue' ) [ 'computed' ]
5
11
const createApp : typeof import ( 'vue' ) [ 'createApp' ]
6
12
const createLogger : typeof import ( 'vuex' ) [ 'createLogger' ]
@@ -9,13 +15,18 @@ declare global {
9
15
const customRef : typeof import ( 'vue' ) [ 'customRef' ]
10
16
const defineAsyncComponent : typeof import ( 'vue' ) [ 'defineAsyncComponent' ]
11
17
const defineComponent : typeof import ( 'vue' ) [ 'defineComponent' ]
18
+ const delErrorPage : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/storage' ) [ 'delErrorPage' ]
12
19
const effectScope : typeof import ( 'vue' ) [ 'effectScope' ]
13
20
const getCurrentInstance : typeof import ( 'vue' ) [ 'getCurrentInstance' ]
14
21
const getCurrentScope : typeof import ( 'vue' ) [ 'getCurrentScope' ]
22
+ const getErrorPage : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/storage' ) [ 'getErrorPage' ]
15
23
const h : typeof import ( 'vue' ) [ 'h' ]
24
+ const http : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/services/Http' ) [ 'default' ]
25
+ const httpService : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/services/index' ) [ 'httpService' ]
16
26
const inject : typeof import ( 'vue' ) [ 'inject' ]
17
27
const isReadonly : typeof import ( 'vue' ) [ 'isReadonly' ]
18
28
const isRef : typeof import ( 'vue' ) [ 'isRef' ]
29
+ const isUndefined : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/filters' ) [ 'isUndefined' ]
19
30
const mapActions : typeof import ( 'vuex' ) [ 'mapActions' ]
20
31
const mapGetters : typeof import ( 'vuex' ) [ 'mapGetters' ]
21
32
const mapMutations : typeof import ( 'vuex' ) [ 'mapMutations' ]
@@ -40,6 +51,8 @@ declare global {
40
51
const readonly : typeof import ( 'vue' ) [ 'readonly' ]
41
52
const ref : typeof import ( 'vue' ) [ 'ref' ]
42
53
const resolveComponent : typeof import ( 'vue' ) [ 'resolveComponent' ]
54
+ const routerGuard : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/routerGuard' ) [ 'default' ]
55
+ const setErrorPage : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/storage' ) [ 'setErrorPage' ]
43
56
const shallowReactive : typeof import ( 'vue' ) [ 'shallowReactive' ]
44
57
const shallowReadonly : typeof import ( 'vue' ) [ 'shallowReadonly' ]
45
58
const shallowRef : typeof import ( 'vue' ) [ 'shallowRef' ]
@@ -50,6 +63,7 @@ declare global {
50
63
const triggerRef : typeof import ( 'vue' ) [ 'triggerRef' ]
51
64
const unref : typeof import ( 'vue' ) [ 'unref' ]
52
65
const useAttrs : typeof import ( 'vue' ) [ 'useAttrs' ]
66
+ const useCommon : typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/composables/useCommon' ) [ 'default' ]
53
67
const useCssModule : typeof import ( 'vue' ) [ 'useCssModule' ]
54
68
const useCssVars : typeof import ( 'vue' ) [ 'useCssVars' ]
55
69
const useI18n : typeof import ( 'vue-i18n' ) [ 'useI18n' ]
@@ -65,6 +79,12 @@ import { UnwrapRef } from 'vue'
65
79
declare module 'vue' {
66
80
interface ComponentCustomProperties {
67
81
readonly EffectScope : UnwrapRef < typeof import ( 'vue' ) [ 'EffectScope' ] >
82
+ readonly SET_TITLE : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonTypes' ) [ 'SET_TITLE' ] >
83
+ readonly common : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/index' ) [ 'default' ] >
84
+ readonly commonActions : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonActions' ) [ 'default' ] >
85
+ readonly commonGetters : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonGetters' ) [ 'default' ] >
86
+ readonly commonMutations : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonMutations' ) [ 'default' ] >
87
+ readonly commonState : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/stores/Common/commonState' ) [ 'default' ] >
68
88
readonly computed : UnwrapRef < typeof import ( 'vue' ) [ 'computed' ] >
69
89
readonly createApp : UnwrapRef < typeof import ( 'vue' ) [ 'createApp' ] >
70
90
readonly createLogger : UnwrapRef < typeof import ( 'vuex' ) [ 'createLogger' ] >
@@ -73,13 +93,18 @@ declare module 'vue' {
73
93
readonly customRef : UnwrapRef < typeof import ( 'vue' ) [ 'customRef' ] >
74
94
readonly defineAsyncComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineAsyncComponent' ] >
75
95
readonly defineComponent : UnwrapRef < typeof import ( 'vue' ) [ 'defineComponent' ] >
96
+ readonly delErrorPage : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/storage' ) [ 'delErrorPage' ] >
76
97
readonly effectScope : UnwrapRef < typeof import ( 'vue' ) [ 'effectScope' ] >
77
98
readonly getCurrentInstance : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentInstance' ] >
78
99
readonly getCurrentScope : UnwrapRef < typeof import ( 'vue' ) [ 'getCurrentScope' ] >
100
+ readonly getErrorPage : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/storage' ) [ 'getErrorPage' ] >
79
101
readonly h : UnwrapRef < typeof import ( 'vue' ) [ 'h' ] >
102
+ readonly http : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/services/Http' ) [ 'default' ] >
103
+ readonly httpService : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/services/index' ) [ 'httpService' ] >
80
104
readonly inject : UnwrapRef < typeof import ( 'vue' ) [ 'inject' ] >
81
105
readonly isReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'isReadonly' ] >
82
106
readonly isRef : UnwrapRef < typeof import ( 'vue' ) [ 'isRef' ] >
107
+ readonly isUndefined : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/filters' ) [ 'isUndefined' ] >
83
108
readonly mapActions : UnwrapRef < typeof import ( 'vuex' ) [ 'mapActions' ] >
84
109
readonly mapGetters : UnwrapRef < typeof import ( 'vuex' ) [ 'mapGetters' ] >
85
110
readonly mapMutations : UnwrapRef < typeof import ( 'vuex' ) [ 'mapMutations' ] >
@@ -104,6 +129,8 @@ declare module 'vue' {
104
129
readonly readonly : UnwrapRef < typeof import ( 'vue' ) [ 'readonly' ] >
105
130
readonly ref : UnwrapRef < typeof import ( 'vue' ) [ 'ref' ] >
106
131
readonly resolveComponent : UnwrapRef < typeof import ( 'vue' ) [ 'resolveComponent' ] >
132
+ readonly routerGuard : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/routerGuard' ) [ 'default' ] >
133
+ readonly setErrorPage : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/utils/storage' ) [ 'setErrorPage' ] >
107
134
readonly shallowReactive : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReactive' ] >
108
135
readonly shallowReadonly : UnwrapRef < typeof import ( 'vue' ) [ 'shallowReadonly' ] >
109
136
readonly shallowRef : UnwrapRef < typeof import ( 'vue' ) [ 'shallowRef' ] >
@@ -114,6 +141,7 @@ declare module 'vue' {
114
141
readonly triggerRef : UnwrapRef < typeof import ( 'vue' ) [ 'triggerRef' ] >
115
142
readonly unref : UnwrapRef < typeof import ( 'vue' ) [ 'unref' ] >
116
143
readonly useAttrs : UnwrapRef < typeof import ( 'vue' ) [ 'useAttrs' ] >
144
+ readonly useCommon : UnwrapRef < typeof import ( '/Volumes/DIST/Documents/Open Source/vivu/src/composables/useCommon' ) [ 'default' ] >
117
145
readonly useCssModule : UnwrapRef < typeof import ( 'vue' ) [ 'useCssModule' ] >
118
146
readonly useCssVars : UnwrapRef < typeof import ( 'vue' ) [ 'useCssVars' ] >
119
147
readonly useI18n : UnwrapRef < typeof import ( 'vue-i18n' ) [ 'useI18n' ] >
0 commit comments