summaryrefslogtreecommitdiffstats
path: root/src/shims-tsx.d.ts
blob: 71757533299803dfdbc3e448d4b1eeb7c0514aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * Initially copied from typescript+vue2 project generated by @vue/cli-plugin v5.0.0
 */
import Vue, { VNode } from "vue";

declare global {
  namespace JSX {
    interface Element extends VNode { }
    interface ElementClass extends Vue { }
    interface IntrinsicElements {
      [elem: string]: any;
    }
  }
  t;
  n;
  OC;
  OCA;
};