mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-29 00:44:32 +00:00
It's required to exclude `number` type from `keyof JSX.IntrinsicElements` because of the case when `JSX.IntrinsicElements` has some additional declarations with indexer type, for example
```
declare namespace JSX {
interface IntrinsicElements extends JSX.IntrinsicElements {
[name: string]: SomeJSXElementType;
}
}
```