2020-02-18 08:57:00 +01:00
|
|
|
import Vue, { VNode } from "vue";
|
2018-12-21 15:41:34 +01:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
namespace JSX {
|
|
|
|
// tslint:disable no-empty-interface
|
|
|
|
interface Element extends VNode {}
|
|
|
|
// tslint:disable no-empty-interface
|
|
|
|
interface ElementClass extends Vue {}
|
|
|
|
interface IntrinsicElements {
|
2018-12-21 17:10:39 +01:00
|
|
|
[elem: string]: any;
|
2018-12-21 15:41:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|