Update chrome.d.ts

According to documentation https://developer.chrome.com/extensions/webRequest#type-UploadData
array of UploadData 	(optional) raw

any 	(optional) bytes : An ArrayBuffer with a copy of the data.
This commit is contained in:
NN
2015-03-10 17:03:06 +02:00
parent 3b2ed809b9
commit 11c517fec4

4
chrome/chrome.d.ts vendored
View File

@@ -2251,7 +2251,7 @@ declare module chrome.webRequest {
}
interface UploadData {
bytes?: any[];
bytes?: ArrayBuffer;
file?: string;
}
@@ -2329,7 +2329,7 @@ declare module chrome.webRequest {
}
interface RequestBody {
raw?: UploadData;
raw?: UploadData[];
error?: string;
formData?: FormData;
}