TypeScript Version: 2.3.2
Code
a.ts:
"use strict";
export class A {}
b.ts
"use strict";
export class B extends A {}
Trigger a quickfix on A in B extends A to add the missing import
Expected behavior:
Resulting code:
"use strict";
import { A } from "./a";
export class B extends A {}
Actual behavior:
Import is to the head of the file, before "use strict"
import { A } from "./a";
"use strict";
export class B extends A {}
TypeScript Version: 2.3.2
Code
a.ts:b.tsTrigger a quickfix on
AinB extends Ato add the missing importExpected behavior:
Resulting code:
Actual behavior:
Import is to the head of the file, before
"use strict"