jsx.d.ts 235 B

1234567891011121314
  1. import Vue, { VNode } from 'vue';
  2. declare global {
  3. namespace JSX {
  4. type Element = VNode;
  5. type ElementClass = Vue;
  6. interface IntrinsicElements {
  7. [elem: string]: any;
  8. }
  9. type IntrinsicAttributes = any;
  10. }
  11. }