@types/node 14.0.23 → 14.0.27
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/README.md +3 -3
- node/child_process.d.ts +1 -0
- node/crypto.d.ts +35 -1
- node/globals.d.ts +3 -0
- node/index.d.ts +0 -1
- node/package.json +2 -7
- node/querystring.d.ts +1 -1
node/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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 28 Jul 2020 21:57:26 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
|
-
* Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `exports`, `global`, `module`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
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), [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), [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), [Anna Henningsen](https://github.com/addaleax), and [Jason Kwok](https://github.com/JasonHK).
|
node/child_process.d.ts
CHANGED
|
@@ -430,6 +430,7 @@ declare module "child_process" {
|
|
|
430
430
|
detached?: boolean;
|
|
431
431
|
windowsVerbatimArguments?: boolean;
|
|
432
432
|
}
|
|
433
|
+
function fork(modulePath: string, options?: ForkOptions): ChildProcess;
|
|
433
434
|
function fork(modulePath: string, args?: ReadonlyArray<string>, options?: ForkOptions): ChildProcess;
|
|
434
435
|
|
|
435
436
|
interface SpawnSyncOptions extends CommonSpawnOptions {
|
node/crypto.d.ts
CHANGED
|
@@ -431,7 +431,7 @@ declare module "crypto" {
|
|
|
431
431
|
/** @deprecated since v10.0.0 */
|
|
432
432
|
const DEFAULT_ENCODING: BufferEncoding;
|
|
433
433
|
|
|
434
|
-
type KeyType = 'rsa' | 'dsa' | 'ec';
|
|
434
|
+
type KeyType = 'rsa' | 'dsa' | 'ec' | 'ed25519';
|
|
435
435
|
type KeyFormat = 'pem' | 'der';
|
|
436
436
|
|
|
437
437
|
interface BasePrivateKeyEncodingOptions<T extends KeyFormat> {
|
|
@@ -445,6 +445,12 @@ declare module "crypto" {
|
|
|
445
445
|
privateKey: KeyObject;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
+
interface ED25519KeyPairKeyObjectOptions {
|
|
449
|
+
/**
|
|
450
|
+
* No options.
|
|
451
|
+
*/
|
|
452
|
+
}
|
|
453
|
+
|
|
448
454
|
interface ECKeyPairKeyObjectOptions {
|
|
449
455
|
/**
|
|
450
456
|
* Name of the curve to use.
|
|
@@ -529,6 +535,16 @@ declare module "crypto" {
|
|
|
529
535
|
};
|
|
530
536
|
}
|
|
531
537
|
|
|
538
|
+
interface ED25519KeyPairOptions<PubF extends KeyFormat, PrivF extends KeyFormat> {
|
|
539
|
+
publicKeyEncoding: {
|
|
540
|
+
type: 'pkcs1' | 'spki';
|
|
541
|
+
format: PubF;
|
|
542
|
+
};
|
|
543
|
+
privateKeyEncoding: BasePrivateKeyEncodingOptions<PrivF> & {
|
|
544
|
+
type: 'sec1' | 'pkcs8';
|
|
545
|
+
};
|
|
546
|
+
}
|
|
547
|
+
|
|
532
548
|
interface KeyPairSyncResult<T1 extends string | Buffer, T2 extends string | Buffer> {
|
|
533
549
|
publicKey: T1;
|
|
534
550
|
privateKey: T2;
|
|
@@ -552,6 +568,12 @@ declare module "crypto" {
|
|
|
552
568
|
function generateKeyPairSync(type: 'ec', options: ECKeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
|
|
553
569
|
function generateKeyPairSync(type: 'ec', options: ECKeyPairKeyObjectOptions): KeyPairKeyObjectResult;
|
|
554
570
|
|
|
571
|
+
function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>): KeyPairSyncResult<string, string>;
|
|
572
|
+
function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>): KeyPairSyncResult<string, Buffer>;
|
|
573
|
+
function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>): KeyPairSyncResult<Buffer, string>;
|
|
574
|
+
function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>): KeyPairSyncResult<Buffer, Buffer>;
|
|
575
|
+
function generateKeyPairSync(type: 'ed25519', options: ED25519KeyPairKeyObjectOptions): KeyPairKeyObjectResult;
|
|
576
|
+
|
|
555
577
|
function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
|
|
556
578
|
function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
|
|
557
579
|
function generateKeyPair(type: 'rsa', options: RSAKeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
|
|
@@ -570,6 +592,12 @@ declare module "crypto" {
|
|
|
570
592
|
function generateKeyPair(type: 'ec', options: ECKeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
|
|
571
593
|
function generateKeyPair(type: 'ec', options: ECKeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
|
|
572
594
|
|
|
595
|
+
function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'pem'>, callback: (err: Error | null, publicKey: string, privateKey: string) => void): void;
|
|
596
|
+
function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'pem', 'der'>, callback: (err: Error | null, publicKey: string, privateKey: Buffer) => void): void;
|
|
597
|
+
function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'pem'>, callback: (err: Error | null, publicKey: Buffer, privateKey: string) => void): void;
|
|
598
|
+
function generateKeyPair(type: 'ed25519', options: ED25519KeyPairOptions<'der', 'der'>, callback: (err: Error | null, publicKey: Buffer, privateKey: Buffer) => void): void;
|
|
599
|
+
function generateKeyPair(type: 'ed25519', options: ED25519KeyPairKeyObjectOptions, callback: (err: Error | null, publicKey: KeyObject, privateKey: KeyObject) => void): void;
|
|
600
|
+
|
|
573
601
|
namespace generateKeyPair {
|
|
574
602
|
function __promisify__(type: "rsa", options: RSAKeyPairOptions<'pem', 'pem'>): Promise<{ publicKey: string, privateKey: string }>;
|
|
575
603
|
function __promisify__(type: "rsa", options: RSAKeyPairOptions<'pem', 'der'>): Promise<{ publicKey: string, privateKey: Buffer }>;
|
|
@@ -588,6 +616,12 @@ declare module "crypto" {
|
|
|
588
616
|
function __promisify__(type: "ec", options: ECKeyPairOptions<'der', 'pem'>): Promise<{ publicKey: Buffer, privateKey: string }>;
|
|
589
617
|
function __promisify__(type: "ec", options: ECKeyPairOptions<'der', 'der'>): Promise<{ publicKey: Buffer, privateKey: Buffer }>;
|
|
590
618
|
function __promisify__(type: "ec", options: ECKeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
|
|
619
|
+
|
|
620
|
+
function __promisify__(type: "ed25519", options: ED25519KeyPairOptions<'pem', 'pem'>): Promise<{ publicKey: string, privateKey: string }>;
|
|
621
|
+
function __promisify__(type: "ed25519", options: ED25519KeyPairOptions<'pem', 'der'>): Promise<{ publicKey: string, privateKey: Buffer }>;
|
|
622
|
+
function __promisify__(type: "ed25519", options: ED25519KeyPairOptions<'der', 'pem'>): Promise<{ publicKey: Buffer, privateKey: string }>;
|
|
623
|
+
function __promisify__(type: "ed25519", options: ED25519KeyPairOptions<'der', 'der'>): Promise<{ publicKey: Buffer, privateKey: Buffer }>;
|
|
624
|
+
function __promisify__(type: "ed25519", options: ED25519KeyPairKeyObjectOptions): Promise<KeyPairKeyObjectResult>;
|
|
591
625
|
}
|
|
592
626
|
|
|
593
627
|
/**
|
node/globals.d.ts
CHANGED
|
@@ -36,6 +36,9 @@ interface NodeRequire extends NodeJS.Require {}
|
|
|
36
36
|
interface RequireResolve extends NodeJS.RequireResolve {}
|
|
37
37
|
interface NodeModule extends NodeJS.Module {}
|
|
38
38
|
|
|
39
|
+
declare var process: NodeJS.Process;
|
|
40
|
+
declare var console: Console;
|
|
41
|
+
|
|
39
42
|
declare var __filename: string;
|
|
40
43
|
declare var __dirname: string;
|
|
41
44
|
|
node/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
// Mariusz Wiktorczyk <https://github.com/mwiktorczyk>
|
|
23
23
|
// Mohsen Azimi <https://github.com/mohsen1>
|
|
24
24
|
// Nicolas Even <https://github.com/n-e>
|
|
25
|
-
// Nicolas Voigt <https://github.com/octo-sniffle>
|
|
26
25
|
// Nikita Galkin <https://github.com/galkin>
|
|
27
26
|
// Parambir Singh <https://github.com/parambirs>
|
|
28
27
|
// Sebastian Silbermann <https://github.com/eps1lon>
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.27",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -114,11 +114,6 @@
|
|
|
114
114
|
"url": "https://github.com/n-e",
|
|
115
115
|
"githubUsername": "n-e"
|
|
116
116
|
},
|
|
117
|
-
{
|
|
118
|
-
"name": "Nicolas Voigt",
|
|
119
|
-
"url": "https://github.com/octo-sniffle",
|
|
120
|
-
"githubUsername": "octo-sniffle"
|
|
121
|
-
},
|
|
122
117
|
{
|
|
123
118
|
"name": "Nikita Galkin",
|
|
124
119
|
"url": "https://github.com/galkin",
|
|
@@ -251,6 +246,6 @@
|
|
|
251
246
|
},
|
|
252
247
|
"scripts": {},
|
|
253
248
|
"dependencies": {},
|
|
254
|
-
"typesPublisherContentHash": "
|
|
249
|
+
"typesPublisherContentHash": "35ae99a50b9236126d2beef33b7132686ee6d4e06f2c092e9417d5ceb2e48181",
|
|
255
250
|
"typeScriptVersion": "3.0"
|
|
256
251
|
}
|
node/querystring.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare module "querystring" {
|
|
|
10
10
|
|
|
11
11
|
interface ParsedUrlQuery extends NodeJS.Dict<string | string[]> { }
|
|
12
12
|
|
|
13
|
-
interface ParsedUrlQueryInput extends NodeJS.Dict<string | number | boolean | string
|
|
13
|
+
interface ParsedUrlQueryInput extends NodeJS.Dict<string | number | boolean | ReadonlyArray<string> | ReadonlyArray<number> | ReadonlyArray<boolean> | null> {
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string;
|