handin-website/frontend/env.d.ts
2026-03-02 20:09:27 +01:00

7 lines
201 B
TypeScript

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