2021-12-06 15:06:38 +01:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
|
|
declare module '*.vue' {
|
|
|
|
|
import { DefineComponent } from 'vue'
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
|
|
|
|
|
const component: DefineComponent<{}, {}, any>
|
|
|
|
|
export default component
|
2021-12-09 14:18:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare module 'vue' {
|
|
|
|
|
import { CompatVue } from '@vue/runtime-dom'
|
|
|
|
|
const Vue: CompatVue
|
|
|
|
|
export default Vue
|
|
|
|
|
export * from '@vue/runtime-dom'
|
2021-12-06 15:06:38 +01:00
|
|
|
}
|