diff --git a/index.d.ts b/index.d.ts index 99b46bf..1f4fed3 100644 --- a/index.d.ts +++ b/index.d.ts @@ -3,11 +3,7 @@ /** A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The File interface is based on Blob, inheriting blob functionality and expanding it to support files on the user's system. */ declare interface FetchBlob extends Blob { [Symbol.toStringTag]: 'Blob'; - stream: () => ReadableStream; - text: () => Promise; - arrayBuffer: () => Promise; toString: () => '[object Blob]'; - } declare const FetchBlob: {