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