chore: update deps
This commit is contained in:
parent
e90d7e6f27
commit
52fdb6dd64
10
src/auto-imports.d.ts
vendored
10
src/auto-imports.d.ts
vendored
@ -40,6 +40,8 @@ declare global {
|
||||
const inject: typeof import('vue')['inject']
|
||||
const isDark: typeof import('./composables/dark')['isDark']
|
||||
const isDefined: typeof import('@vueuse/core')['isDefined']
|
||||
const isProxy: typeof import('vue')['isProxy']
|
||||
const isReactive: typeof import('vue')['isReactive']
|
||||
const isReadonly: typeof import('vue')['isReadonly']
|
||||
const isRef: typeof import('vue')['isRef']
|
||||
const logicAnd: typeof import('@vueuse/core')['logicAnd']
|
||||
@ -136,6 +138,7 @@ declare global {
|
||||
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
||||
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
||||
const useDraggable: typeof import('@vueuse/core')['useDraggable']
|
||||
const useDropZone: typeof import('@vueuse/core')['useDropZone']
|
||||
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
||||
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
||||
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
||||
@ -242,6 +245,8 @@ declare global {
|
||||
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
||||
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
||||
const watchPausable: typeof import('@vueuse/core')['watchPausable']
|
||||
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
||||
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
||||
const whenever: typeof import('@vueuse/core')['whenever']
|
||||
@ -288,6 +293,8 @@ declare module 'vue' {
|
||||
inject: typeof import('vue')['inject']
|
||||
isDark: typeof import('./composables/dark')['isDark']
|
||||
isDefined: typeof import('@vueuse/core')['isDefined']
|
||||
isProxy: typeof import('vue')['isProxy']
|
||||
isReactive: typeof import('vue')['isReactive']
|
||||
isReadonly: typeof import('vue')['isReadonly']
|
||||
isRef: typeof import('vue')['isRef']
|
||||
logicAnd: typeof import('@vueuse/core')['logicAnd']
|
||||
@ -384,6 +391,7 @@ declare module 'vue' {
|
||||
useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
||||
useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
||||
useDraggable: typeof import('@vueuse/core')['useDraggable']
|
||||
useDropZone: typeof import('@vueuse/core')['useDropZone']
|
||||
useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
||||
useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
||||
useElementHover: typeof import('@vueuse/core')['useElementHover']
|
||||
@ -490,6 +498,8 @@ declare module 'vue' {
|
||||
watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
||||
watchOnce: typeof import('@vueuse/core')['watchOnce']
|
||||
watchPausable: typeof import('@vueuse/core')['watchPausable']
|
||||
watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||
watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||
watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
||||
watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
||||
whenever: typeof import('@vueuse/core')['whenever']
|
||||
|
@ -12,6 +12,7 @@
|
||||
"resolveJsonModule": true,
|
||||
"noUnusedLocals": true,
|
||||
"strictNullChecks": true,
|
||||
"allowJs": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"types": [
|
||||
"vitest",
|
||||
|
Loading…
Reference in New Issue
Block a user