Default export has no call signatures
I'm trying to import the default export from
However, running
The referenced
So Deno should see its default export.
The strange thing is that the following works when checking the file and running it.
And the following check returns
So why doesn't Deno like it when I use
npm:@feathersjs/express, but Deno complains that the default export has no call signatures.However, running
main.ts works without issue.The referenced
index.d.ts contains this:So Deno should see its default export.
The strange thing is that the following works when checking the file and running it.
And the following check returns
true:So why doesn't Deno like it when I use
express() instead of express.default()?