readme fixed

This commit is contained in:
Vladimir Enchev
2014-04-24 16:53:50 +03:00
parent 3d8602c58c
commit f884426627

View File

@@ -9,18 +9,13 @@
interface HttpRequestOptions {
url: string;
method: string;
headers?: HttpHeader[];
headers?: any;
content?: HttpContent;
}
interface HttpHeader {
name: string;
value: string;
}
interface HttpResponse {
statusCode: number;
headers: HttpHeader[];
headers: any;
content?: HttpContent;
}