=== tests/cases/compiler/exportAssignmentOfGenericType1_1.ts === /// import q = require("exportAssignmentOfGenericType1_0"); >q : typeof q class M extends q { } >M : M >q : q var m: M; >m : M >M : M var r: string = m.foo; >r : string >m.foo : string >m : M >foo : string === tests/cases/compiler/exportAssignmentOfGenericType1_0.ts === export = T; >T : T class T { foo: X; } >T : T >X : X >foo : X >X : X