@types/node 13.13.14 → 13.13.15
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 v13.13/README.md +2 -2
- node v13.13/child_process.d.ts +1 -0
- node v13.13/index.d.ts +0 -1
- node v13.13/package.json +2 -7
node v13.13/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/v13.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Thu, 23 Jul 2020 23:06:35 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `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), [Benjamin Toueg](https://github.com/btoueg), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [Christian Vaagland Tellnes](https://github.com/tellnes), [David Junger](https://github.com/touffy), [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), [
|
|
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), [Benjamin Toueg](https://github.com/btoueg), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [Christian Vaagland Tellnes](https://github.com/tellnes), [David Junger](https://github.com/touffy), [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), [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), [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), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Minh Son Nguyen](https://github.com/nguymin4), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Surasak Chaisurin](https://github.com/Ryan-Willpower), [Piotr Błażejewicz](https://github.com/peterblazejewicz), and [Jason Kwok](https://github.com/JasonHK).
|
node v13.13/child_process.d.ts
CHANGED
|
@@ -425,6 +425,7 @@ declare module "child_process" {
|
|
|
425
425
|
detached?: boolean;
|
|
426
426
|
windowsVerbatimArguments?: boolean;
|
|
427
427
|
}
|
|
428
|
+
function fork(modulePath: string, options?: ForkOptions): ChildProcess;
|
|
428
429
|
function fork(modulePath: string, args?: ReadonlyArray<string>, options?: ForkOptions): ChildProcess;
|
|
429
430
|
|
|
430
431
|
interface SpawnSyncOptions extends CommonSpawnOptions {
|
node v13.13/index.d.ts
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
// Mariusz Wiktorczyk <https://github.com/mwiktorczyk>
|
|
24
24
|
// Mohsen Azimi <https://github.com/mohsen1>
|
|
25
25
|
// Nicolas Even <https://github.com/n-e>
|
|
26
|
-
// Nicolas Voigt <https://github.com/octo-sniffle>
|
|
27
26
|
// Nikita Galkin <https://github.com/galkin>
|
|
28
27
|
// Parambir Singh <https://github.com/parambirs>
|
|
29
28
|
// Sebastian Silbermann <https://github.com/eps1lon>
|
node v13.13/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "13.13.
|
|
3
|
+
"version": "13.13.15",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -119,11 +119,6 @@
|
|
|
119
119
|
"url": "https://github.com/n-e",
|
|
120
120
|
"githubUsername": "n-e"
|
|
121
121
|
},
|
|
122
|
-
{
|
|
123
|
-
"name": "Nicolas Voigt",
|
|
124
|
-
"url": "https://github.com/octo-sniffle",
|
|
125
|
-
"githubUsername": "octo-sniffle"
|
|
126
|
-
},
|
|
127
122
|
{
|
|
128
123
|
"name": "Nikita Galkin",
|
|
129
124
|
"url": "https://github.com/galkin",
|
|
@@ -251,6 +246,6 @@
|
|
|
251
246
|
},
|
|
252
247
|
"scripts": {},
|
|
253
248
|
"dependencies": {},
|
|
254
|
-
"typesPublisherContentHash": "
|
|
249
|
+
"typesPublisherContentHash": "6deafae609c93a62b9e69baa18fc8b5a991402c0bc183b83d9ee6bcd28d763e6",
|
|
255
250
|
"typeScriptVersion": "3.0"
|
|
256
251
|
}
|