Commit 4c93bbc
committed
fix: rename exported interface
I noticed when manually inspecting the bundled declaration files, the
interfaces weren't being renamed according to how I was importing them
in the source file:
import type { IntrinsicElements as DefinedIntrinsicElements } from '...'
So the `IntrinsicElements` interface was recursively referencing itself
in the JSX namespace because it was all bundled together in the same
file.
So in an abundance of caution, I just renamed it just to be safe.1 parent a367b53 commit 4c93bbc
2 files changed
+5
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1513 | 1513 | | |
1514 | 1514 | | |
1515 | 1515 | | |
1516 | | - | |
| 1516 | + | |
| 1517 | + | |
| 1518 | + | |
1517 | 1519 | | |
1518 | | - | |
| 1520 | + | |
1519 | 1521 | | |
1520 | 1522 | | |
1521 | 1523 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments