@types/node 10.17.22 → 10.17.26
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 v10.17/README.md +2 -2
- node v10.17/base.d.ts +1 -1
- node v10.17/http.d.ts +3 -0
- node v10.17/index.d.ts +0 -1
- node v10.17/package.json +2 -7
- node v10.17/util.d.ts +1 -0
node v10.17/README.md
CHANGED
|
@@ -8,9 +8,9 @@ This package contains type definitions for Node.js (http://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v10.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Tue,
|
|
11
|
+
* Last updated: Tue, 09 Jun 2020 20:57:27 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `NodeJS`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
|
15
15
|
# Credits
|
|
16
|
-
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alexander T.](https://github.com/a-tarasyuk), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [
|
|
16
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alexander T.](https://github.com/a-tarasyuk), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Flarna](https://github.com/Flarna), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Hoàng Văn Khải](https://github.com/KSXGitHub), [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), [Nicolas Voigt](https://github.com/octo-sniffle), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Simon Schick](https://github.com/SimonSchick), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Zane Hannan AU](https://github.com/ZaneHannanAU), [Jeremie Rodriguez](https://github.com/jeremiergz), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Jordi Oliveras Rovira](https://github.com/j-oliveras), [Thanik Bhongbhibhat](https://github.com/bhongy), [Minh Son Nguyen](https://github.com/nguymin4), and [ExE Boss](https://github.com/ExE-Boss).
|
node v10.17/base.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// base
|
|
1
|
+
// base definitions for all NodeJS modules that are not specific to any version of TypeScript
|
|
2
2
|
/// <reference path="globals.d.ts" />
|
|
3
3
|
/// <reference path="async_hooks.d.ts" />
|
|
4
4
|
/// <reference path="buffer.d.ts" />
|
node v10.17/http.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ declare module "http" {
|
|
|
15
15
|
'access-control-allow-origin'?: string;
|
|
16
16
|
'access-control-expose-headers'?: string;
|
|
17
17
|
'access-control-max-age'?: string;
|
|
18
|
+
'access-control-request-headers'?: string;
|
|
19
|
+
'access-control-request-method'?: string;
|
|
18
20
|
'age'?: string;
|
|
19
21
|
'allow'?: string;
|
|
20
22
|
'alt-svc'?: string;
|
|
@@ -41,6 +43,7 @@ declare module "http" {
|
|
|
41
43
|
'if-unmodified-since'?: string;
|
|
42
44
|
'last-modified'?: string;
|
|
43
45
|
'location'?: string;
|
|
46
|
+
'origin'?: string;
|
|
44
47
|
'pragma'?: string;
|
|
45
48
|
'proxy-authenticate'?: string;
|
|
46
49
|
'proxy-authorization'?: string;
|
node v10.17/index.d.ts
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
// Andrew Makarov <https://github.com/r3nya>
|
|
9
9
|
// Bruno Scheufler <https://github.com/brunoscheufler>
|
|
10
10
|
// Chigozirim C. <https://github.com/smac89>
|
|
11
|
-
// Christian Vaagland Tellnes <https://github.com/tellnes>
|
|
12
11
|
// Deividas Bakanas <https://github.com/DeividasBakanas>
|
|
13
12
|
// Eugene Y. Q. Shen <https://github.com/eyqs>
|
|
14
13
|
// Flarna <https://github.com/Flarna>
|
node v10.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.17.
|
|
3
|
+
"version": "10.17.26",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -44,11 +44,6 @@
|
|
|
44
44
|
"url": "https://github.com/smac89",
|
|
45
45
|
"githubUsername": "smac89"
|
|
46
46
|
},
|
|
47
|
-
{
|
|
48
|
-
"name": "Christian Vaagland Tellnes",
|
|
49
|
-
"url": "https://github.com/tellnes",
|
|
50
|
-
"githubUsername": "tellnes"
|
|
51
|
-
},
|
|
52
47
|
{
|
|
53
48
|
"name": "Deividas Bakanas",
|
|
54
49
|
"url": "https://github.com/DeividasBakanas",
|
|
@@ -211,6 +206,6 @@
|
|
|
211
206
|
},
|
|
212
207
|
"scripts": {},
|
|
213
208
|
"dependencies": {},
|
|
214
|
-
"typesPublisherContentHash": "
|
|
209
|
+
"typesPublisherContentHash": "8ea81367399a42214ed87b19a56d83f317f39828484921a9f11f1a1df8712e5f",
|
|
215
210
|
"typeScriptVersion": "3.0"
|
|
216
211
|
}
|
node v10.17/util.d.ts
CHANGED
|
@@ -112,6 +112,7 @@ declare module "util" {
|
|
|
112
112
|
function isAnyArrayBuffer(object: any): boolean;
|
|
113
113
|
function isArgumentsObject(object: any): object is IArguments;
|
|
114
114
|
function isArrayBuffer(object: any): object is ArrayBuffer;
|
|
115
|
+
function isArrayBufferView(object: any): object is ArrayBufferView;
|
|
115
116
|
function isAsyncFunction(object: any): boolean;
|
|
116
117
|
function isBooleanObject(object: any): object is Boolean;
|
|
117
118
|
function isBoxedPrimitive(object: any): object is (Number | Boolean | String | Symbol /* | Object(BigInt) | Object(Symbol) */);
|