<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **Code** ``` ts // File: test1.ts export class Test { } // File: test2.ts import { Test as Test } from './test1' const test = new Test() ``` If you rename left or right side of `Test as Test` - both sides are renamed at the same time - it should only rename source or alias separately