n-link/n-link-core/shims-tsx.d.ts

14 lines
305 B
TypeScript
Raw Permalink Normal View History

2020-10-02 20:17:55 +00:00
import Vue, { VNode } from 'vue'
declare global {
namespace JSX {
// tslint:disable no-empty-interface
interface Element extends VNode {}
// tslint:disable no-empty-interface
interface ElementClass extends Vue {}
interface IntrinsicElements {
[elem: string]: any;
}
}
}