TypeScript/tests/cases/compiler/allowSyntheticDefaultImports9.ts

11 lines
217 B
TypeScript
Raw Normal View History

// @allowSyntheticDefaultImports: true
// @module: commonjs
// @Filename: b.d.ts
export function foo();
export function bar();
// @Filename: a.ts
import { default as Foo } from "./b";
Foo.bar();
Foo.foo();