- [x] I tried using the `@types/xxxx` package and had problems. - [x] I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript - [x] I have a question that is inappropriate for [StackOverflow](https://stackoverflow.com/). (Please ask any appropriate questions there). - [x] [Mention](https://github.com/blog/821-mention-somebody-they-re-notified) the authors (see `Definitions by:` in `index.d.ts`) so they can respond. - Authors: @torstenwerner, @nikcorg The Body.blob() return type is given as Buffer, but that is incorrect. ```js fetch('https://example.com').then(b => b.blob()).then(b => console.log(b.toString('binary'))); ``` Expected: `'<!doctype html>...'` Actual: `'[object Blob]'`