vue3-yuanma/packages/runtime-core/jsx.d.ts
2018-10-26 15:44:50 -04:00

13 lines
251 B
TypeScript

declare namespace JSX {
interface Element {}
interface ElementClass {
render(props: any, slots: any, attrs: any): any
}
interface ElementAttributesProperty {
$props: {}
}
interface IntrinsicElements {
[name: string]: any
}
}