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 { interface HttpRequestOptions {
url: string; url: string;
method: string; method: string;
headers?: HttpHeader[]; headers?: any;
content?: HttpContent; content?: HttpContent;
} }
interface HttpHeader {
name: string;
value: string;
}
interface HttpResponse { interface HttpResponse {
statusCode: number; statusCode: number;
headers: HttpHeader[]; headers: any;
content?: HttpContent; content?: HttpContent;
} }