mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
readme fixed
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user