2023-11-18 13:59:40 +08:00
|
|
|
/* eslint-disable */
|
2023-11-11 22:18:37 +08:00
|
|
|
/// <reference types="vite/client" />
|
|
|
|
|
|
|
|
declare module "*.vue" {
|
|
|
|
import type { DefineComponent } from "vue";
|
|
|
|
const component: DefineComponent<{}, {}, any>;
|
|
|
|
export default component;
|
|
|
|
}
|