Files
mobilizon-frontend/src/shims-vue.d.ts
2025-11-29 19:09:12 +01:00

17 lines
402 B
TypeScript

declare module "*.vue" {
import type { DefineComponent } from "vue";
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
const component: DefineComponent<{}, {}, {}>;
export default component;
}
declare module "*.svg" {
import Vue, { VueConstructor } from "vue";
const content: VueConstructor<Vue>;
export default content;
}
declare module "@vue-leaflet/vue-leaflet";