web/src/shims-tsx.d.ts

16 lines
308 B
TypeScript
Raw Permalink Normal View History

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