2023-05-23 08:19:09 +02:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
declare module '*.vue' {
|
2023-05-23 10:05:53 +02:00
|
|
|
import type { DefineComponent } from 'vue';
|
|
|
|
const component: DefineComponent<{}, {}, any>;
|
|
|
|
export default component;
|
2023-05-23 08:19:09 +02:00
|
|
|
}
|