Files
halo-theme-WarmIsland/env.d.ts
T
2022-07-29 20:43:20 +08:00

9 lines
219 B
TypeScript

/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
// eslint-disable-next-line
const component: DefineComponent<{}, {}, any>;
export default component;
}