Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 2 additions & 16 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,4 @@
/// <reference lib="dom"/>

/** 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<string>;
arrayBuffer: () => Promise<ArrayBuffer>;
toString: () => '[object Blob]';

}

declare const FetchBlob: {
prototype: FetchBlob;
new(blobParts?: BlobPart[], options?: BlobPropertyBag): FetchBlob;
};

export = FetchBlob;
/* global Blob */
export = Blob;