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