TypeScript/tests/cases/compiler/es6ImportDefaultBindingFollowedWithNamespaceBindingDts.ts

9 lines
223 B
TypeScript
Raw Normal View History

2015-03-16 02:24:12 +01:00
// @module: commonjs
// @declaration: true
// @filename: server.ts
export class a { }
// @filename: client.ts
2015-09-15 20:43:28 +02:00
import defaultBinding, * as nameSpaceBinding from "./server";
2015-03-16 02:24:12 +01:00
export var x = new nameSpaceBinding.a();