chore: update autoimport file

This commit is contained in:
Matthias 2024-07-17 20:28:50 +02:00
parent 2e8ab4235b
commit f49aa167d2

View File

@ -361,6 +361,15 @@ declare global {
// @ts-ignore
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
import('vue')
// @ts-ignore
export type { ColorPreferences } from './stores/colors'
import('./stores/colors')
// @ts-ignore
export type { TradeLayout, DashboardLayout } from './stores/layout'
import('./stores/layout')
// @ts-ignore
export type { OpenTradeVizOptions } from './stores/settings'
import('./stores/settings')
}
// for vue template auto import
import { UnwrapRef } from 'vue'