Files
drop/desktop/src/vite-env.d.ts
T
2024-10-06 01:10:57 +10:00

8 lines
189 B
TypeScript

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