mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
Fixes https://github.com/oxc-project/oxc/issues/4020 Example: ```ts import {K} from 'foo' import {T} from 'bar' export interface I { prop: {[key in K]: T} } ``` Before: ```ts import {T} from 'bar' export interface I { prop: {[key in K]: T} } ``` After: ```ts import {K} from 'foo' import {T} from 'bar' export interface I { prop: {[key in K]: T} } ``` TSC: ```ts import { K } from 'foo'; import { T } from 'bar'; export interface I { prop: { [key in K]: T; }; } ``` |
||
|---|---|---|
| .. | ||
| examples | ||
| src | ||
| tests | ||
| Cargo.toml | ||
| CHANGELOG.md | ||