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
|
|
|
|
const component: DefineComponent<{}, {}, any>;
|
|
|
|
export default component;
|
2018-12-21 15:41:34 +01:00
|
|
|
}
|