13 lines
214 B
TypeScript
Raw Normal View History

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