Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/web/client/src/shims-tsx.d.ts
994 views
1
import Vue, { VNode } from "vue";
2
3
declare global {
4
namespace JSX {
5
// tslint:disable no-empty-interface
6
interface Element extends VNode {}
7
// tslint:disable no-empty-interface
8
interface ElementClass extends Vue {}
9
interface IntrinsicElements {
10
[elem: string]: any;
11
}
12
}
13
}
14
15