cowin-monitor/frontend/src/shims-tsx.d.ts
Ameya Shenoy 1170266412
chore: create frontend template using vue
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2021-05-04 12:01:28 +05:30

13 lines
306 B
TypeScript

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;
}
}
}