Files
watermark-wizard/src/vite-env.d.ts
Julian Freeman 54c9474894 blank
2026-01-18 22:37:13 -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;
}