-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
146 lines (125 loc) · 3.12 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
declare namespace ReqJSON {
interface HTTPMethod {
/**
* Send HTTP request.
*
* @param data The data to be sent.
* @param options The options to use for each requests to the resource.
*/
<ResponseBody>(data?: any, options?: object): Promise<ResponseBody>
}
interface ShortHandMethod {
/**
* Send HTTP request.
*
* @param path The path to use for the request, with parameters defined.
* @param data The data to be sent.
* @param options The options to use for each requests to the resource.
*/
<ResponseBody>(path: string, data?: any, options?: object): Promise<ResponseBody>
}
interface RESTfulMethods {
get: HTTPMethod
post: HTTPMethod
put: HTTPMethod
delete: HTTPMethod
}
interface Headers {
[k: string]: string
}
/**
* ReqJSON request context
*/
interface Context {
/**
* The path to use for the request, with parameters defined.
*/
path: string
/**
* The HTTP method to use for the request (e.g. "POST", "GET", "PUT", "DELETE").
*/
method: 'POST' | 'GET' | 'PUT' | 'DELETE'
/**
* The URL to which the request is sent.
*/
url: string
/**
* The data to be sent.
*/
data: any
/**
* The options to use for the request.
*/
options: object
/**
* The HTTP status of the response. Only available when the request completes.
*/
status?: number
/**
* The parsed response. Only available when the request completes.
*/
response?: any
/**
* The request headers before the request is sent, the response headers when the request completes.
*/
headers: Headers
/**
* Alias to `headers`
*/
header: Headers
/**
* The original XMLHttpRequest object.
*/
xhr: XMLHttpRequest
}
interface Middleware extends Function {
/**
* ReqJSON middleware, similar to Koa.js middleware.
*
* @param context ReqJSON request context
* @param next ReqJSON Middleware
*/
(context?: Context, next?: Middleware): any
}
}
interface ReqJSONOptions {
/**
* Customized request headers
*/
headers: Headers
/**
* Set request timeout
*/
timeout: number
}
declare class ReqJSON {
/**
* Create a new ReqJSON instance
*
* ReqJSON is a Promise based simple HTTP/HTTPS client for browser to request JSON or string for RESTful apis, with koa-like middleware support.
*
* @param options The options to use for ReqJSON instance.
*/
constructor(options?: ReqJSONOptions);
/**
* Define a RESTful resource.
*
* @param path The path to use for the request, with parameters defined.
* @param options The options to use for each requests to the resource.
*/
resource(
path: string,
options?: ReqJSONOptions,
): ReqJSON.RESTfulMethods
/**
* Register a ReqJSON middleware
*
* @param middleware A ReqJSON middleware
*/
use(middleware: ReqJSON.Middleware): this
get: ReqJSON.ShortHandMethod
post: ReqJSON.ShortHandMethod
put: ReqJSON.ShortHandMethod
delete: ReqJSON.ShortHandMethod
}
export = ReqJSON