Merge pull request #4323 from jonathantyates/patch-3

Update whatwg-fetch.d.ts
This commit is contained in:
Masahiro Wakame
2015-05-12 01:54:07 +09:00
+1 -1
View File
@@ -51,7 +51,7 @@ declare class Body {
arrayBuffer(): Promise<ArrayBuffer>;
blob(): Promise<Blob>;
formData(): Promise<FormData>;
json(): Promise<JSON>;
json(): Promise<any>;
text(): Promise<string>;
}
declare class Response extends Body {