2020-02-18 08:57:00 +01:00
|
|
|
declare module "*.vue" {
|
2020-10-20 11:20:33 +02:00
|
|
|
import type { DefineComponent } from "vue";
|
2019-11-15 18:36:47 +01:00
|
|
|
|
2020-10-20 11:20:33 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
2022-09-01 10:00:17 +02:00
|
|
|
const component: DefineComponent<{}, {}, {}>;
|
2020-10-20 11:20:33 +02:00
|
|
|
export default component;
|
2018-12-21 15:41:34 +01:00
|
|
|
}
|
2020-12-02 11:19:39 +01:00
|
|
|
|
|
|
|
declare module "*.svg" {
|
|
|
|
import Vue, { VueConstructor } from "vue";
|
|
|
|
|
|
|
|
const content: VueConstructor<Vue>;
|
|
|
|
export default content;
|
|
|
|
}
|
2022-07-12 10:55:28 +02:00
|
|
|
|
|
|
|
declare module "@vue-leaflet/vue-leaflet";
|