DefinitelyTyped/types/superagent
Kannan Goundan 1f91c7f854
🤖 Merge PR #46915 [superagent] Response has both 'headers' and 'header' by @cakoose
The SuperAgent intro doc uses 'headers': https://visionmedia.github.io/superagent/#request-basics

I tested with superagent v3.x-6.x and both '.header' and '.headers' have
the same value:

```
const superagent = require('superagent');

superagent.get('https://www.google.com').then(res => {
    console.log('header', res.header);
    console.log('headers', res.headers);
});
```
2020-08-25 07:05:27 -04:00
..
v2
index.d.ts
superagent-tests.ts
tsconfig.json
tslint.json