=== tests/cases/compiler/externalModuleQualification.ts === export var ID = "test"; >ID : string >"test" : string export class DiffEditor { >DiffEditor : DiffEditor >A : A >B : B >C : C private previousDiffAction: NavigateAction; >previousDiffAction : NavigateAction >NavigateAction : NavigateAction constructor(id: string = ID) { >id : string >ID : string } } class NavigateAction { >NavigateAction : NavigateAction f(editor: DiffEditor) { >f : (editor: DiffEditor) => void >editor : DiffEditor >DiffEditor : DiffEditor } }