jsx.d.ts 214 B

123456789101112
  1. declare namespace JSX {
  2. interface Element {}
  3. interface ElementClass {
  4. $props: {}
  5. }
  6. interface ElementAttributesProperty {
  7. $props: {}
  8. }
  9. interface IntrinsicElements {
  10. [name: string]: any
  11. }
  12. }