I have file models.ts with 2 classes A and B.
If I automatically import both of them they will be imported one after another like that:
import { A } from "./models";
import { B } from "./models";
Could you please implement insertion to already existing import instead of adding a new one.
import { A, B } from "./models";
I have file
models.tswith 2 classesAandB.If I automatically import both of them they will be imported one after another like that:
Could you please implement insertion to already existing import instead of adding a new one.