enhance blobSlice definition. (#37921)

This commit is contained in:
Saeid Rezaei 2019-08-27 02:42:39 +02:00 committed by Andrew Casey
parent 396247807a
commit 2dec200c95

View File

@ -114,7 +114,7 @@ interface LoadImage {
data?: ImageHead,
) => void;
blobSlice: (file: Blob, start?: number, end?: number) => Blob;
blobSlice: (this: Blob, start?: number, end?: number) => Blob;
}
declare const loadImage: LoadImage;