We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
foo.d.ts
export function foo() { } export function bar() { }
bar.ts
import { default as Foo } from "./foo";
Note that the following does work:
import Foo from "./foo";