2022-03-03 10:26:15 +00:00
|
|
|
/// <reference types="vite/client" />
|
2022-06-14 07:56:55 +00:00
|
|
|
|
|
|
|
declare module "*.vue" {
|
|
|
|
import type { DefineComponent } from "vue";
|
|
|
|
// eslint-disable-next-line
|
|
|
|
const component: DefineComponent<{}, {}, any>;
|
|
|
|
export default component;
|
|
|
|
}
|