TypeScript/tests/cases/compiler/importNonExportedMember3.ts

9 lines
127 B
TypeScript
Raw Normal View History

// @Filename: a.ts
export {}
interface Foo {}
interface Foo {}
namespace Foo {}
// @Filename: b.ts
import { Foo } from './a';