@types/node 16.18.57 → 16.18.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- node v16.18/README.md +3 -4
- node v16.18/events.d.ts +0 -1
- node v16.18/http.d.ts +50 -50
- node v16.18/index.d.ts +0 -45
- node v16.18/inspector.d.ts +0 -1
- node v16.18/os.d.ts +1 -1
- node v16.18/package.json +85 -89
- node v16.18/ts4.8/http.d.ts +50 -50
- node v16.18/ts4.8/inspector.d.ts +0 -1
- node v16.18/ts4.8/os.d.ts +1 -1
node v16.18/README.md
CHANGED
|
@@ -2,15 +2,14 @@
|
|
|
2
2
|
> `npm install --save @types/node`
|
|
3
3
|
|
|
4
4
|
# Summary
|
|
5
|
-
This package contains type definitions for
|
|
5
|
+
This package contains type definitions for node (https://nodejs.org/).
|
|
6
6
|
|
|
7
7
|
# Details
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v16.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 18 Oct 2023 05:47:08 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
|
-
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
13
|
|
|
15
14
|
# Credits
|
|
16
|
-
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [
|
|
15
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Seth Westphal](https://github.com/westy92), [Simon Schick](https://github.com/SimonSchick), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [Yongsheng Zhang](https://github.com/ZYSzys), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), and [wafuwafu13](https://github.com/wafuwafu13).
|
node v16.18/events.d.ts
CHANGED
node v16.18/http.d.ts
CHANGED
|
@@ -114,32 +114,32 @@ declare module "http" {
|
|
|
114
114
|
type OutgoingHttpHeader = number | string | string[];
|
|
115
115
|
interface OutgoingHttpHeaders extends NodeJS.Dict<OutgoingHttpHeader> {
|
|
116
116
|
accept?: string | string[] | undefined;
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
117
|
+
"accept-charset"?: string | string[] | undefined;
|
|
118
|
+
"accept-encoding"?: string | string[] | undefined;
|
|
119
|
+
"accept-language"?: string | string[] | undefined;
|
|
120
|
+
"accept-ranges"?: string | undefined;
|
|
121
|
+
"access-control-allow-credentials"?: string | undefined;
|
|
122
|
+
"access-control-allow-headers"?: string | undefined;
|
|
123
|
+
"access-control-allow-methods"?: string | undefined;
|
|
124
|
+
"access-control-allow-origin"?: string | undefined;
|
|
125
|
+
"access-control-expose-headers"?: string | undefined;
|
|
126
|
+
"access-control-max-age"?: string | undefined;
|
|
127
|
+
"access-control-request-headers"?: string | undefined;
|
|
128
|
+
"access-control-request-method"?: string | undefined;
|
|
129
129
|
age?: string | undefined;
|
|
130
130
|
allow?: string | undefined;
|
|
131
131
|
authorization?: string | undefined;
|
|
132
|
-
|
|
133
|
-
|
|
132
|
+
"cache-control"?: string | undefined;
|
|
133
|
+
"cdn-cache-control"?: string | undefined;
|
|
134
134
|
connection?: string | string[] | undefined;
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
135
|
+
"content-disposition"?: string | undefined;
|
|
136
|
+
"content-encoding"?: string | undefined;
|
|
137
|
+
"content-language"?: string | undefined;
|
|
138
|
+
"content-length"?: string | number | undefined;
|
|
139
|
+
"content-location"?: string | undefined;
|
|
140
|
+
"content-range"?: string | undefined;
|
|
141
|
+
"content-security-policy"?: string | undefined;
|
|
142
|
+
"content-security-policy-report-only"?: string | undefined;
|
|
143
143
|
cookie?: string | string[] | undefined;
|
|
144
144
|
dav?: string | string[] | undefined;
|
|
145
145
|
dnt?: string | undefined;
|
|
@@ -150,48 +150,48 @@ declare module "http" {
|
|
|
150
150
|
forwarded?: string | undefined;
|
|
151
151
|
from?: string | undefined;
|
|
152
152
|
host?: string | undefined;
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
153
|
+
"if-match"?: string | undefined;
|
|
154
|
+
"if-modified-since"?: string | undefined;
|
|
155
|
+
"if-none-match"?: string | undefined;
|
|
156
|
+
"if-range"?: string | undefined;
|
|
157
|
+
"if-unmodified-since"?: string | undefined;
|
|
158
|
+
"last-modified"?: string | undefined;
|
|
159
159
|
link?: string | string[] | undefined;
|
|
160
160
|
location?: string | undefined;
|
|
161
|
-
|
|
161
|
+
"max-forwards"?: string | undefined;
|
|
162
162
|
origin?: string | undefined;
|
|
163
163
|
prgama?: string | string[] | undefined;
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
164
|
+
"proxy-authenticate"?: string | string[] | undefined;
|
|
165
|
+
"proxy-authorization"?: string | undefined;
|
|
166
|
+
"public-key-pins"?: string | undefined;
|
|
167
|
+
"public-key-pins-report-only"?: string | undefined;
|
|
168
168
|
range?: string | undefined;
|
|
169
169
|
referer?: string | undefined;
|
|
170
|
-
|
|
170
|
+
"referrer-policy"?: string | undefined;
|
|
171
171
|
refresh?: string | undefined;
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
172
|
+
"retry-after"?: string | undefined;
|
|
173
|
+
"sec-websocket-accept"?: string | undefined;
|
|
174
|
+
"sec-websocket-extensions"?: string | string[] | undefined;
|
|
175
|
+
"sec-websocket-key"?: string | undefined;
|
|
176
|
+
"sec-websocket-protocol"?: string | string[] | undefined;
|
|
177
|
+
"sec-websocket-version"?: string | undefined;
|
|
178
178
|
server?: string | undefined;
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
"set-cookie"?: string | string[] | undefined;
|
|
180
|
+
"strict-transport-security"?: string | undefined;
|
|
181
181
|
te?: string | undefined;
|
|
182
182
|
trailer?: string | undefined;
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
"transfer-encoding"?: string | undefined;
|
|
184
|
+
"user-agent"?: string | undefined;
|
|
185
185
|
upgrade?: string | undefined;
|
|
186
|
-
|
|
186
|
+
"upgrade-insecure-requests"?: string | undefined;
|
|
187
187
|
vary?: string | undefined;
|
|
188
188
|
via?: string | string[] | undefined;
|
|
189
189
|
warning?: string | undefined;
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
190
|
+
"www-authenticate"?: string | string[] | undefined;
|
|
191
|
+
"x-content-type-options"?: string | undefined;
|
|
192
|
+
"x-dns-prefetch-control"?: string | undefined;
|
|
193
|
+
"x-frame-options"?: string | undefined;
|
|
194
|
+
"x-xss-protection"?: string | undefined;
|
|
195
195
|
}
|
|
196
196
|
interface ClientRequestArgs {
|
|
197
197
|
signal?: AbortSignal | undefined;
|
node v16.18/index.d.ts
CHANGED
|
@@ -1,48 +1,3 @@
|
|
|
1
|
-
// Type definitions for non-npm package Node.js 16.18
|
|
2
|
-
// Project: https://nodejs.org/
|
|
3
|
-
// Definitions by: Microsoft TypeScript <https://github.com/Microsoft>
|
|
4
|
-
// DefinitelyTyped <https://github.com/DefinitelyTyped>
|
|
5
|
-
// Alberto Schiabel <https://github.com/jkomyno>
|
|
6
|
-
// Alvis HT Tang <https://github.com/alvis>
|
|
7
|
-
// Andrew Makarov <https://github.com/r3nya>
|
|
8
|
-
// Benjamin Toueg <https://github.com/btoueg>
|
|
9
|
-
// Chigozirim C. <https://github.com/smac89>
|
|
10
|
-
// David Junger <https://github.com/touffy>
|
|
11
|
-
// Deividas Bakanas <https://github.com/DeividasBakanas>
|
|
12
|
-
// Eugene Y. Q. Shen <https://github.com/eyqs>
|
|
13
|
-
// Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>
|
|
14
|
-
// Huw <https://github.com/hoo29>
|
|
15
|
-
// Kelvin Jin <https://github.com/kjin>
|
|
16
|
-
// Klaus Meinhardt <https://github.com/ajafff>
|
|
17
|
-
// Lishude <https://github.com/islishude>
|
|
18
|
-
// Mariusz Wiktorczyk <https://github.com/mwiktorczyk>
|
|
19
|
-
// Mohsen Azimi <https://github.com/mohsen1>
|
|
20
|
-
// Nicolas Even <https://github.com/n-e>
|
|
21
|
-
// Nikita Galkin <https://github.com/galkin>
|
|
22
|
-
// Parambir Singh <https://github.com/parambirs>
|
|
23
|
-
// Sebastian Silbermann <https://github.com/eps1lon>
|
|
24
|
-
// Seth Westphal <https://github.com/westy92>
|
|
25
|
-
// Simon Schick <https://github.com/SimonSchick>
|
|
26
|
-
// Thomas den Hollander <https://github.com/ThomasdenH>
|
|
27
|
-
// Wilco Bakker <https://github.com/WilcoBakker>
|
|
28
|
-
// wwwy3y3 <https://github.com/wwwy3y3>
|
|
29
|
-
// Samuel Ainsworth <https://github.com/samuela>
|
|
30
|
-
// Kyle Uehlein <https://github.com/kuehlein>
|
|
31
|
-
// Thanik Bhongbhibhat <https://github.com/bhongy>
|
|
32
|
-
// Marcin Kopacz <https://github.com/chyzwar>
|
|
33
|
-
// Trivikram Kamat <https://github.com/trivikr>
|
|
34
|
-
// Junxiao Shi <https://github.com/yoursunny>
|
|
35
|
-
// Ilia Baryshnikov <https://github.com/qwelias>
|
|
36
|
-
// ExE Boss <https://github.com/ExE-Boss>
|
|
37
|
-
// Piotr Błażejewicz <https://github.com/peterblazejewicz>
|
|
38
|
-
// Anna Henningsen <https://github.com/addaleax>
|
|
39
|
-
// Victor Perin <https://github.com/victorperin>
|
|
40
|
-
// Yongsheng Zhang <https://github.com/ZYSzys>
|
|
41
|
-
// NodeJS Contributors <https://github.com/NodeJS>
|
|
42
|
-
// Linus Unnebäck <https://github.com/LinusU>
|
|
43
|
-
// wafuwafu13 <https://github.com/wafuwafu13>
|
|
44
|
-
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
45
|
-
|
|
46
1
|
/**
|
|
47
2
|
* License for programmatically and manually incorporated
|
|
48
3
|
* documentation aka. `JSDoc` from https://github.com/nodejs/node/tree/master/doc
|
node v16.18/inspector.d.ts
CHANGED
node v16.18/os.d.ts
CHANGED
node v16.18/package.json
CHANGED
|
@@ -1,214 +1,209 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.18.
|
|
4
|
-
"description": "TypeScript definitions for
|
|
3
|
+
"version": "16.18.59",
|
|
4
|
+
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"contributors": [
|
|
8
8
|
{
|
|
9
9
|
"name": "Microsoft TypeScript",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"name": "DefinitelyTyped",
|
|
15
|
-
"url": "https://github.com/DefinitelyTyped",
|
|
16
|
-
"githubUsername": "DefinitelyTyped"
|
|
10
|
+
"githubUsername": "Microsoft",
|
|
11
|
+
"url": "https://github.com/Microsoft"
|
|
17
12
|
},
|
|
18
13
|
{
|
|
19
14
|
"name": "Alberto Schiabel",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
15
|
+
"githubUsername": "jkomyno",
|
|
16
|
+
"url": "https://github.com/jkomyno"
|
|
22
17
|
},
|
|
23
18
|
{
|
|
24
19
|
"name": "Alvis HT Tang",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
20
|
+
"githubUsername": "alvis",
|
|
21
|
+
"url": "https://github.com/alvis"
|
|
27
22
|
},
|
|
28
23
|
{
|
|
29
24
|
"name": "Andrew Makarov",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
25
|
+
"githubUsername": "r3nya",
|
|
26
|
+
"url": "https://github.com/r3nya"
|
|
32
27
|
},
|
|
33
28
|
{
|
|
34
29
|
"name": "Benjamin Toueg",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
30
|
+
"githubUsername": "btoueg",
|
|
31
|
+
"url": "https://github.com/btoueg"
|
|
37
32
|
},
|
|
38
33
|
{
|
|
39
34
|
"name": "Chigozirim C.",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
35
|
+
"githubUsername": "smac89",
|
|
36
|
+
"url": "https://github.com/smac89"
|
|
42
37
|
},
|
|
43
38
|
{
|
|
44
39
|
"name": "David Junger",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
40
|
+
"githubUsername": "touffy",
|
|
41
|
+
"url": "https://github.com/touffy"
|
|
47
42
|
},
|
|
48
43
|
{
|
|
49
44
|
"name": "Deividas Bakanas",
|
|
50
|
-
"
|
|
51
|
-
"
|
|
45
|
+
"githubUsername": "DeividasBakanas",
|
|
46
|
+
"url": "https://github.com/DeividasBakanas"
|
|
52
47
|
},
|
|
53
48
|
{
|
|
54
49
|
"name": "Eugene Y. Q. Shen",
|
|
55
|
-
"
|
|
56
|
-
"
|
|
50
|
+
"githubUsername": "eyqs",
|
|
51
|
+
"url": "https://github.com/eyqs"
|
|
57
52
|
},
|
|
58
53
|
{
|
|
59
54
|
"name": "Hannes Magnusson",
|
|
60
|
-
"
|
|
61
|
-
"
|
|
55
|
+
"githubUsername": "Hannes-Magnusson-CK",
|
|
56
|
+
"url": "https://github.com/Hannes-Magnusson-CK"
|
|
62
57
|
},
|
|
63
58
|
{
|
|
64
59
|
"name": "Huw",
|
|
65
|
-
"
|
|
66
|
-
"
|
|
60
|
+
"githubUsername": "hoo29",
|
|
61
|
+
"url": "https://github.com/hoo29"
|
|
67
62
|
},
|
|
68
63
|
{
|
|
69
64
|
"name": "Kelvin Jin",
|
|
70
|
-
"
|
|
71
|
-
"
|
|
65
|
+
"githubUsername": "kjin",
|
|
66
|
+
"url": "https://github.com/kjin"
|
|
72
67
|
},
|
|
73
68
|
{
|
|
74
69
|
"name": "Klaus Meinhardt",
|
|
75
|
-
"
|
|
76
|
-
"
|
|
70
|
+
"githubUsername": "ajafff",
|
|
71
|
+
"url": "https://github.com/ajafff"
|
|
77
72
|
},
|
|
78
73
|
{
|
|
79
74
|
"name": "Lishude",
|
|
80
|
-
"
|
|
81
|
-
"
|
|
75
|
+
"githubUsername": "islishude",
|
|
76
|
+
"url": "https://github.com/islishude"
|
|
82
77
|
},
|
|
83
78
|
{
|
|
84
79
|
"name": "Mariusz Wiktorczyk",
|
|
85
|
-
"
|
|
86
|
-
"
|
|
80
|
+
"githubUsername": "mwiktorczyk",
|
|
81
|
+
"url": "https://github.com/mwiktorczyk"
|
|
87
82
|
},
|
|
88
83
|
{
|
|
89
84
|
"name": "Mohsen Azimi",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
85
|
+
"githubUsername": "mohsen1",
|
|
86
|
+
"url": "https://github.com/mohsen1"
|
|
92
87
|
},
|
|
93
88
|
{
|
|
94
89
|
"name": "Nicolas Even",
|
|
95
|
-
"
|
|
96
|
-
"
|
|
90
|
+
"githubUsername": "n-e",
|
|
91
|
+
"url": "https://github.com/n-e"
|
|
97
92
|
},
|
|
98
93
|
{
|
|
99
94
|
"name": "Nikita Galkin",
|
|
100
|
-
"
|
|
101
|
-
"
|
|
95
|
+
"githubUsername": "galkin",
|
|
96
|
+
"url": "https://github.com/galkin"
|
|
102
97
|
},
|
|
103
98
|
{
|
|
104
99
|
"name": "Parambir Singh",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
100
|
+
"githubUsername": "parambirs",
|
|
101
|
+
"url": "https://github.com/parambirs"
|
|
107
102
|
},
|
|
108
103
|
{
|
|
109
104
|
"name": "Sebastian Silbermann",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
105
|
+
"githubUsername": "eps1lon",
|
|
106
|
+
"url": "https://github.com/eps1lon"
|
|
112
107
|
},
|
|
113
108
|
{
|
|
114
109
|
"name": "Seth Westphal",
|
|
115
|
-
"
|
|
116
|
-
"
|
|
110
|
+
"githubUsername": "westy92",
|
|
111
|
+
"url": "https://github.com/westy92"
|
|
117
112
|
},
|
|
118
113
|
{
|
|
119
114
|
"name": "Simon Schick",
|
|
120
|
-
"
|
|
121
|
-
"
|
|
115
|
+
"githubUsername": "SimonSchick",
|
|
116
|
+
"url": "https://github.com/SimonSchick"
|
|
122
117
|
},
|
|
123
118
|
{
|
|
124
119
|
"name": "Thomas den Hollander",
|
|
125
|
-
"
|
|
126
|
-
"
|
|
120
|
+
"githubUsername": "ThomasdenH",
|
|
121
|
+
"url": "https://github.com/ThomasdenH"
|
|
127
122
|
},
|
|
128
123
|
{
|
|
129
124
|
"name": "Wilco Bakker",
|
|
130
|
-
"
|
|
131
|
-
"
|
|
125
|
+
"githubUsername": "WilcoBakker",
|
|
126
|
+
"url": "https://github.com/WilcoBakker"
|
|
132
127
|
},
|
|
133
128
|
{
|
|
134
129
|
"name": "wwwy3y3",
|
|
135
|
-
"
|
|
136
|
-
"
|
|
130
|
+
"githubUsername": "wwwy3y3",
|
|
131
|
+
"url": "https://github.com/wwwy3y3"
|
|
137
132
|
},
|
|
138
133
|
{
|
|
139
134
|
"name": "Samuel Ainsworth",
|
|
140
|
-
"
|
|
141
|
-
"
|
|
135
|
+
"githubUsername": "samuela",
|
|
136
|
+
"url": "https://github.com/samuela"
|
|
142
137
|
},
|
|
143
138
|
{
|
|
144
139
|
"name": "Kyle Uehlein",
|
|
145
|
-
"
|
|
146
|
-
"
|
|
140
|
+
"githubUsername": "kuehlein",
|
|
141
|
+
"url": "https://github.com/kuehlein"
|
|
147
142
|
},
|
|
148
143
|
{
|
|
149
144
|
"name": "Thanik Bhongbhibhat",
|
|
150
|
-
"
|
|
151
|
-
"
|
|
145
|
+
"githubUsername": "bhongy",
|
|
146
|
+
"url": "https://github.com/bhongy"
|
|
152
147
|
},
|
|
153
148
|
{
|
|
154
149
|
"name": "Marcin Kopacz",
|
|
155
|
-
"
|
|
156
|
-
"
|
|
150
|
+
"githubUsername": "chyzwar",
|
|
151
|
+
"url": "https://github.com/chyzwar"
|
|
157
152
|
},
|
|
158
153
|
{
|
|
159
154
|
"name": "Trivikram Kamat",
|
|
160
|
-
"
|
|
161
|
-
"
|
|
155
|
+
"githubUsername": "trivikr",
|
|
156
|
+
"url": "https://github.com/trivikr"
|
|
162
157
|
},
|
|
163
158
|
{
|
|
164
159
|
"name": "Junxiao Shi",
|
|
165
|
-
"
|
|
166
|
-
"
|
|
160
|
+
"githubUsername": "yoursunny",
|
|
161
|
+
"url": "https://github.com/yoursunny"
|
|
167
162
|
},
|
|
168
163
|
{
|
|
169
164
|
"name": "Ilia Baryshnikov",
|
|
170
|
-
"
|
|
171
|
-
"
|
|
165
|
+
"githubUsername": "qwelias",
|
|
166
|
+
"url": "https://github.com/qwelias"
|
|
172
167
|
},
|
|
173
168
|
{
|
|
174
169
|
"name": "ExE Boss",
|
|
175
|
-
"
|
|
176
|
-
"
|
|
170
|
+
"githubUsername": "ExE-Boss",
|
|
171
|
+
"url": "https://github.com/ExE-Boss"
|
|
177
172
|
},
|
|
178
173
|
{
|
|
179
174
|
"name": "Piotr Błażejewicz",
|
|
180
|
-
"
|
|
181
|
-
"
|
|
175
|
+
"githubUsername": "peterblazejewicz",
|
|
176
|
+
"url": "https://github.com/peterblazejewicz"
|
|
182
177
|
},
|
|
183
178
|
{
|
|
184
179
|
"name": "Anna Henningsen",
|
|
185
|
-
"
|
|
186
|
-
"
|
|
180
|
+
"githubUsername": "addaleax",
|
|
181
|
+
"url": "https://github.com/addaleax"
|
|
187
182
|
},
|
|
188
183
|
{
|
|
189
184
|
"name": "Victor Perin",
|
|
190
|
-
"
|
|
191
|
-
"
|
|
185
|
+
"githubUsername": "victorperin",
|
|
186
|
+
"url": "https://github.com/victorperin"
|
|
192
187
|
},
|
|
193
188
|
{
|
|
194
189
|
"name": "Yongsheng Zhang",
|
|
195
|
-
"
|
|
196
|
-
"
|
|
190
|
+
"githubUsername": "ZYSzys",
|
|
191
|
+
"url": "https://github.com/ZYSzys"
|
|
197
192
|
},
|
|
198
193
|
{
|
|
199
194
|
"name": "NodeJS Contributors",
|
|
200
|
-
"
|
|
201
|
-
"
|
|
195
|
+
"githubUsername": "NodeJS",
|
|
196
|
+
"url": "https://github.com/NodeJS"
|
|
202
197
|
},
|
|
203
198
|
{
|
|
204
199
|
"name": "Linus Unnebäck",
|
|
205
|
-
"
|
|
206
|
-
"
|
|
200
|
+
"githubUsername": "LinusU",
|
|
201
|
+
"url": "https://github.com/LinusU"
|
|
207
202
|
},
|
|
208
203
|
{
|
|
209
204
|
"name": "wafuwafu13",
|
|
210
|
-
"
|
|
211
|
-
"
|
|
205
|
+
"githubUsername": "wafuwafu13",
|
|
206
|
+
"url": "https://github.com/wafuwafu13"
|
|
212
207
|
}
|
|
213
208
|
],
|
|
214
209
|
"main": "",
|
|
@@ -227,6 +222,7 @@
|
|
|
227
222
|
},
|
|
228
223
|
"scripts": {},
|
|
229
224
|
"dependencies": {},
|
|
230
|
-
"typesPublisherContentHash": "
|
|
231
|
-
"typeScriptVersion": "4.5"
|
|
225
|
+
"typesPublisherContentHash": "949dbf1c3383b7fabdf29e3862e498364d403e6665b4ea20b0bfe290c02d0220",
|
|
226
|
+
"typeScriptVersion": "4.5",
|
|
227
|
+
"nonNpm": true
|
|
232
228
|
}
|
node v16.18/ts4.8/http.d.ts
CHANGED
|
@@ -113,32 +113,32 @@ declare module "http" {
|
|
|
113
113
|
type OutgoingHttpHeader = number | string | string[];
|
|
114
114
|
interface OutgoingHttpHeaders extends NodeJS.Dict<OutgoingHttpHeader> {
|
|
115
115
|
accept?: string | string[] | undefined;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
116
|
+
"accept-charset"?: string | string[] | undefined;
|
|
117
|
+
"accept-encoding"?: string | string[] | undefined;
|
|
118
|
+
"accept-language"?: string | string[] | undefined;
|
|
119
|
+
"accept-ranges"?: string | undefined;
|
|
120
|
+
"access-control-allow-credentials"?: string | undefined;
|
|
121
|
+
"access-control-allow-headers"?: string | undefined;
|
|
122
|
+
"access-control-allow-methods"?: string | undefined;
|
|
123
|
+
"access-control-allow-origin"?: string | undefined;
|
|
124
|
+
"access-control-expose-headers"?: string | undefined;
|
|
125
|
+
"access-control-max-age"?: string | undefined;
|
|
126
|
+
"access-control-request-headers"?: string | undefined;
|
|
127
|
+
"access-control-request-method"?: string | undefined;
|
|
128
128
|
age?: string | undefined;
|
|
129
129
|
allow?: string | undefined;
|
|
130
130
|
authorization?: string | undefined;
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
"cache-control"?: string | undefined;
|
|
132
|
+
"cdn-cache-control"?: string | undefined;
|
|
133
133
|
connection?: string | string[] | undefined;
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
134
|
+
"content-disposition"?: string | undefined;
|
|
135
|
+
"content-encoding"?: string | undefined;
|
|
136
|
+
"content-language"?: string | undefined;
|
|
137
|
+
"content-length"?: string | number | undefined;
|
|
138
|
+
"content-location"?: string | undefined;
|
|
139
|
+
"content-range"?: string | undefined;
|
|
140
|
+
"content-security-policy"?: string | undefined;
|
|
141
|
+
"content-security-policy-report-only"?: string | undefined;
|
|
142
142
|
cookie?: string | string[] | undefined;
|
|
143
143
|
dav?: string | string[] | undefined;
|
|
144
144
|
dnt?: string | undefined;
|
|
@@ -149,48 +149,48 @@ declare module "http" {
|
|
|
149
149
|
forwarded?: string | undefined;
|
|
150
150
|
from?: string | undefined;
|
|
151
151
|
host?: string | undefined;
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
152
|
+
"if-match"?: string | undefined;
|
|
153
|
+
"if-modified-since"?: string | undefined;
|
|
154
|
+
"if-none-match"?: string | undefined;
|
|
155
|
+
"if-range"?: string | undefined;
|
|
156
|
+
"if-unmodified-since"?: string | undefined;
|
|
157
|
+
"last-modified"?: string | undefined;
|
|
158
158
|
link?: string | string[] | undefined;
|
|
159
159
|
location?: string | undefined;
|
|
160
|
-
|
|
160
|
+
"max-forwards"?: string | undefined;
|
|
161
161
|
origin?: string | undefined;
|
|
162
162
|
prgama?: string | string[] | undefined;
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
163
|
+
"proxy-authenticate"?: string | string[] | undefined;
|
|
164
|
+
"proxy-authorization"?: string | undefined;
|
|
165
|
+
"public-key-pins"?: string | undefined;
|
|
166
|
+
"public-key-pins-report-only"?: string | undefined;
|
|
167
167
|
range?: string | undefined;
|
|
168
168
|
referer?: string | undefined;
|
|
169
|
-
|
|
169
|
+
"referrer-policy"?: string | undefined;
|
|
170
170
|
refresh?: string | undefined;
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
171
|
+
"retry-after"?: string | undefined;
|
|
172
|
+
"sec-websocket-accept"?: string | undefined;
|
|
173
|
+
"sec-websocket-extensions"?: string | string[] | undefined;
|
|
174
|
+
"sec-websocket-key"?: string | undefined;
|
|
175
|
+
"sec-websocket-protocol"?: string | string[] | undefined;
|
|
176
|
+
"sec-websocket-version"?: string | undefined;
|
|
177
177
|
server?: string | undefined;
|
|
178
|
-
|
|
179
|
-
|
|
178
|
+
"set-cookie"?: string | string[] | undefined;
|
|
179
|
+
"strict-transport-security"?: string | undefined;
|
|
180
180
|
te?: string | undefined;
|
|
181
181
|
trailer?: string | undefined;
|
|
182
|
-
|
|
183
|
-
|
|
182
|
+
"transfer-encoding"?: string | undefined;
|
|
183
|
+
"user-agent"?: string | undefined;
|
|
184
184
|
upgrade?: string | undefined;
|
|
185
|
-
|
|
185
|
+
"upgrade-insecure-requests"?: string | undefined;
|
|
186
186
|
vary?: string | undefined;
|
|
187
187
|
via?: string | string[] | undefined;
|
|
188
188
|
warning?: string | undefined;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
189
|
+
"www-authenticate"?: string | string[] | undefined;
|
|
190
|
+
"x-content-type-options"?: string | undefined;
|
|
191
|
+
"x-dns-prefetch-control"?: string | undefined;
|
|
192
|
+
"x-frame-options"?: string | undefined;
|
|
193
|
+
"x-xss-protection"?: string | undefined;
|
|
194
194
|
}
|
|
195
195
|
interface ClientRequestArgs {
|
|
196
196
|
signal?: AbortSignal | undefined;
|
node v16.18/ts4.8/inspector.d.ts
CHANGED