oxc/crates/oxc_ast
DonIsaac e386b62331 feat(semantic): check for invalid type import assignments (#4097)
Adds checks to `TSImportEqualsDeclaration` for invalid use of `import type` modifier.

```ts
import { Foo } from './foo'
namespace Bar {
  export class Baz {}
}

import type A = Foo.Baz;        // not allowed
import type B = Bar.Baz;        // not allowed
import type C = require('./c'); // allowed
```
2024-07-08 03:14:22 +00:00
..
src feat(semantic): check for invalid type import assignments (#4097) 2024-07-08 03:14:22 +00:00
Cargo.toml Release crates v0.17.1 (#4075) 2024-07-07 01:29:52 +08:00
CHANGELOG.md Release crates v0.17.1 (#4075) 2024-07-07 01:29:52 +08:00