==== tests/cases/conformance/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedClasses.ts (2 errors) ==== module A { export class A { id: number; name: string; } export class AG{ id: T; name: U; } class A2 { id: number; name: string; } class AG2{ id: T; name: U; } } // no errors expected, these are all exported var a: { id: number; name: string }; var a = new A.A(); var AG = new A.AG() // errors expected, these are not exported var a2 = new A.A2(); ~~ !!! Property 'A2' does not exist on type 'typeof A'. var ag2 = new A.A2(); ~~ !!! Property 'A2' does not exist on type 'typeof A'.