chore: updated components files

This commit is contained in:
Matthias 2024-11-03 08:51:52 +01:00
parent 8038b0efd4
commit 8aaab341a2
2 changed files with 3 additions and 0 deletions

View File

@ -187,6 +187,7 @@ declare global {
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
const useAttrs: typeof import('vue')['useAttrs']
const useBackgroundJob: typeof import('./composables/backgroundJob')['useBackgroundJob']
const useBase64: typeof import('@vueuse/core')['useBase64']
const useBattery: typeof import('@vueuse/core')['useBattery']
const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
@ -563,6 +564,7 @@ declare module 'vue' {
readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
readonly useBackgroundJob: UnwrapRef<typeof import('./composables/backgroundJob')['useBackgroundJob']>
readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>

1
src/components.d.ts vendored
View File

@ -129,6 +129,7 @@ declare module 'vue' {
IMdiPause: typeof import('~icons/mdi/pause')['default']
IMdiPencil: typeof import('~icons/mdi/pencil')['default']
IMdiPlay: typeof import('~icons/mdi/play')['default']
IMdiPlus: typeof import('~icons/mdi/plus')['default']
IMdiPlusBoxMultipleOutline: typeof import('~icons/mdi/plus-box-multiple-outline')['default']
IMdiPlusBoxOutline: typeof import('~icons/mdi/plus-box-outline')['default']
IMdiRefresh: typeof import('~icons/mdi/refresh')['default']