TypeScript/tests/cases/fourslash/importNameCodeFix_typeOnly.ts
Andrew Branch ad8c209fc2
Use type-only imports in auto-imports when it would be an error not to, and use auto-imports in “implement interface” fix (#36615)
* Refactor fix-all-missing-imports to be reusable by other codefixes

* Migrate infer-from-usage to use ImportAdder

* Add infer from usage test importing more than one thing in a single fix

* Migrate implement interface / abstract members fixes to use ImportAdder

* Update old tests

* Use type-only imports when it would be an error not to

* Add another test

* Rename stuff
2020-02-10 17:13:35 -08:00

17 lines
261 B
TypeScript

/// <reference path="fourslash.ts" />
// @importsNotUsedAsValues: error
// @Filename: types.ts
////export class A {}
// @Filename: index.ts
////const a: /**/A
goTo.marker("");
verify.importFixAtPosition([
`import type { A } from "./types";
const a: A`
]);