vue3-yuanma/packages/runtime-core/jsx.d.ts

13 lines
214 B
TypeScript
Raw Normal View History

2018-10-14 08:46:30 +08:00
declare namespace JSX {
interface Element {}
interface ElementClass {
$props: {}
2018-10-14 08:46:30 +08:00
}
interface ElementAttributesProperty {
$props: {}
}
interface IntrinsicElements {
[name: string]: any
}
}