I am trying to use supertest
with TypeScript after initially using with JavaScript.
However I am now receiving red squiggles under my code stating:
cannot invoke expression whose type lacks a call signature. Type 'typeof supertest' has no compatible call signatures
I am using supertest in the following way:
import * as supertest from 'supertest';
const request = superTest(some.url);
// Forgive my pseudocode
function makeRequest() {
return request.get('/endpoint')...
}
Is this something I should be worried about? How can I correct this?