@@ -92,6 +92,7 @@ declare global {
92
92
const refDefault : typeof import ( '@vueuse/core' ) [ 'refDefault' ]
93
93
const refThrottled : typeof import ( '@vueuse/core' ) [ 'refThrottled' ]
94
94
const refWithControl : typeof import ( '@vueuse/core' ) [ 'refWithControl' ]
95
+ const render : typeof import ( './composables/render' ) [ 'default' ]
95
96
const resolveComponent : typeof import ( 'vue' ) [ 'resolveComponent' ]
96
97
const resolveRef : typeof import ( '@vueuse/core' ) [ 'resolveRef' ]
97
98
const resolveUnref : typeof import ( '@vueuse/core' ) [ 'resolveUnref' ]
@@ -229,6 +230,7 @@ declare global {
229
230
const useOnline : typeof import ( '@vueuse/core' ) [ 'useOnline' ]
230
231
const useOptions : typeof import ( './composables/options' ) [ 'useOptions' ]
231
232
const useOrderStore : typeof import ( './store/order.store' ) [ 'useOrderStore' ]
233
+ const useOrders : typeof import ( './composables/orders' ) [ 'useOrders' ]
232
234
const usePageLeave : typeof import ( '@vueuse/core' ) [ 'usePageLeave' ]
233
235
const useParallax : typeof import ( '@vueuse/core' ) [ 'useParallax' ]
234
236
const useParentElement : typeof import ( '@vueuse/core' ) [ 'useParentElement' ]
@@ -247,6 +249,7 @@ declare global {
247
249
const useProductStore : typeof import ( './store/product.store' ) [ 'useProductStore' ]
248
250
const useRafFn : typeof import ( '@vueuse/core' ) [ 'useRafFn' ]
249
251
const useRefHistory : typeof import ( '@vueuse/core' ) [ 'useRefHistory' ]
252
+ const useRender : typeof import ( './composables/render' ) [ 'default' ]
250
253
const useResizeObserver : typeof import ( '@vueuse/core' ) [ 'useResizeObserver' ]
251
254
const useReviewStore : typeof import ( './store/review.store' ) [ 'useReviewStore' ]
252
255
const useRoute : typeof import ( 'vue-router/auto' ) [ 'useRoute' ]
@@ -415,6 +418,7 @@ declare module 'vue' {
415
418
readonly refDefault : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refDefault' ] >
416
419
readonly refThrottled : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refThrottled' ] >
417
420
readonly refWithControl : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'refWithControl' ] >
421
+ readonly render : UnwrapRef < typeof import ( './composables/render' ) [ 'default' ] >
418
422
readonly resolveComponent : UnwrapRef < typeof import ( 'vue' ) [ 'resolveComponent' ] >
419
423
readonly resolveRef : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'resolveRef' ] >
420
424
readonly resolveUnref : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'resolveUnref' ] >
@@ -551,6 +555,7 @@ declare module 'vue' {
551
555
readonly useOnline : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useOnline' ] >
552
556
readonly useOptions : UnwrapRef < typeof import ( './composables/options' ) [ 'useOptions' ] >
553
557
readonly useOrderStore : UnwrapRef < typeof import ( './store/order.store' ) [ 'useOrderStore' ] >
558
+ readonly useOrders : UnwrapRef < typeof import ( './composables/orders' ) [ 'useOrders' ] >
554
559
readonly usePageLeave : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'usePageLeave' ] >
555
560
readonly useParallax : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useParallax' ] >
556
561
readonly useParentElement : UnwrapRef < typeof import ( '@vueuse/core' ) [ 'useParentElement' ] >
0 commit comments