2021-12-18 13:55:31 +00:00
|
|
|
import Vue, { VNode } from 'vue';
|
2021-05-23 13:01:17 +00:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
namespace JSX {
|
|
|
|
// tslint:disable no-empty-interface
|
2021-12-18 13:55:31 +00:00
|
|
|
interface Element extends VNode {}
|
2021-05-23 13:01:17 +00:00
|
|
|
|
|
|
|
// tslint:disable no-empty-interface
|
2021-12-18 13:55:31 +00:00
|
|
|
interface ElementClass extends Vue {}
|
2021-05-23 13:01:17 +00:00
|
|
|
|
|
|
|
interface IntrinsicElements {
|
2021-12-18 13:55:31 +00:00
|
|
|
[elem: string]: any;
|
2021-05-23 13:01:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|