TypeScript/tests/cases/compiler/allowSyntheticDefaultImports7.ts

10 lines
No EOL
175 B
TypeScript

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