=== tests/cases/compiler/moduleImportedForTypeArgumentPosition_1.ts === /**This is on import declaration*/ import M2 = require("moduleImportedForTypeArgumentPosition_0"); >M2 : typeof M2 class C1{ } >C1 : C1 >T : T class Test1 extends C1 { >Test1 : Test1 >C1 : C1 >M2 : any >M2C : M2.M2C } === tests/cases/compiler/moduleImportedForTypeArgumentPosition_0.ts === export interface M2C { } >M2C : M2C