Open
Description
I generated some code, and it fails the Typescript build with
Property 'default' does not exist on type 'SuperAgentStatic'
The code in question is
const agent = this.configureAgentHandler ?
this.configureAgentHandler(request.default) :
request.default;
It seems that the default
property doesn't exist according to @types/superagent
.
At first glance this issue seems to have been introduced by this change. I can't find a related issue or any other context on that change, but it's clearly a deliberate change that fixed some other problem.
I'm using Superagent v5.1.0 and @types/superagent v4.1.3.