| 123456789101112131415161718192021222324 |
- import type Vue, { type VNode } from "vue";
- declare module "*.tsx" {
- import Vue from "compatible-vue";
- export default Vue;
- }
- declare global {
- namespace JSX {
- // eslint-disable-next-line
- interface Element extends VNode {}
- // eslint-disable-next-line
- interface ElementClass extends Vue {}
- interface ElementAttributesProperty {
- $props: any;
- }
- interface IntrinsicElements {
- [elem: string]: any;
- }
- interface IntrinsicAttributes {
- [elem: string]: any;
- }
- }
- }
|