Files
ai-translate-client/src/vite-env.d.ts
Julian Freeman 5abd514c1d first runnable
2026-02-22 16:30:45 -04: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;
}