Update auto-import after update

This commit is contained in:
Matthias 2024-02-01 07:10:54 +01:00
parent 2e5651e1f7
commit 33ca9b30b0

View File

@ -310,6 +310,7 @@ declare global {
// for vue template auto import // for vue template auto import
import { UnwrapRef } from 'vue' import { UnwrapRef } from 'vue'
declare module 'vue' { declare module 'vue' {
interface GlobalComponents {}
interface ComponentCustomProperties { interface ComponentCustomProperties {
readonly ColorPreferences: UnwrapRef<typeof import('./stores/colors')['ColorPreferences']> readonly ColorPreferences: UnwrapRef<typeof import('./stores/colors')['ColorPreferences']>
readonly DashboardLayout: UnwrapRef<typeof import('./stores/layout')['DashboardLayout']> readonly DashboardLayout: UnwrapRef<typeof import('./stores/layout')['DashboardLayout']>
@ -607,6 +608,7 @@ declare module 'vue' {
} }
} }
declare module '@vue/runtime-core' { declare module '@vue/runtime-core' {
interface GlobalComponents {}
interface ComponentCustomProperties { interface ComponentCustomProperties {
readonly ColorPreferences: UnwrapRef<typeof import('./stores/colors')['ColorPreferences']> readonly ColorPreferences: UnwrapRef<typeof import('./stores/colors')['ColorPreferences']>
readonly DashboardLayout: UnwrapRef<typeof import('./stores/layout')['DashboardLayout']> readonly DashboardLayout: UnwrapRef<typeof import('./stores/layout')['DashboardLayout']>