12345678910111213141516171819202122232425 |
- declare module '*.vue' {
- import { defineComponent } from 'vue';
- const Component: ReturnType<typeof defineComponent>;
- export default Component;
- }
- import type { ComponentRenderProxy, VNode } from 'vue';
- declare global {
- namespace JSX {
- // tslint:disable no-empty-interface
- type Element = VNode;
- // tslint:disable no-empty-interface
- type ElementClass = ComponentRenderProxy;
- interface ElementAttributesProperty {
- $props: any;
- }
- interface IntrinsicElements {
- [elem: string]: any;
- }
- interface IntrinsicAttributes {
- [elem: string]: any;
- }
- }
- }
|