shim-tsx.d.ts
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// 文件: `shim-tsx.d.ts`
import Vue, { VNode } from 'vue';
import type { ComponentRenderProxy } from '@vue/composition-api';
declare module '*.tsx' {
import { defineComponent } from 'vue';
const component: ReturnType<defineComponent>;
// import { ComponentOptions } from 'vue';
// const component: ReturnType<ComponentOptions>;
export default component;
}
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 {
// ['v-if']?: unknown;
// ['v-else-if']?: unknown;
// ['v-else']?: unknown;
// need
// ['v-show']?: unknown;
[elem: string]: any;
// ['v-html']?: unknown;
// ['v-text']?: unknown;
// ['v-model']?: unknown;
}
}
}