@types/node 14.17.25 → 14.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 v14.17/README.md +1 -1
- node v14.17/fs/promises.d.ts +1 -1
- node v14.17/fs.d.ts +4 -4
- node v14.17/package.json +2 -2
node v14.17/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Wed, 13 Oct 2021
|
|
11
|
+
* Last updated: Wed, 13 Oct 2021 21:31:22 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.17/fs/promises.d.ts
CHANGED
|
@@ -561,5 +561,5 @@ declare module 'fs/promises' {
|
|
|
561
561
|
*/
|
|
562
562
|
function readFile(path: PathLike | FileHandle, options?: BaseEncodingOptions & { flag?: OpenMode | undefined } | BufferEncoding | null): Promise<string | Buffer>;
|
|
563
563
|
|
|
564
|
-
function opendir(path:
|
|
564
|
+
function opendir(path: PathLike, options?: OpenDirOptions): Promise<Dir>;
|
|
565
565
|
}
|
node v14.17/fs.d.ts
CHANGED
|
@@ -2241,13 +2241,13 @@ declare module 'fs' {
|
|
|
2241
2241
|
bufferSize?: number | undefined;
|
|
2242
2242
|
}
|
|
2243
2243
|
|
|
2244
|
-
export function opendirSync(path:
|
|
2244
|
+
export function opendirSync(path: PathLike, options?: OpenDirOptions): Dir;
|
|
2245
2245
|
|
|
2246
|
-
export function opendir(path:
|
|
2247
|
-
export function opendir(path:
|
|
2246
|
+
export function opendir(path: PathLike, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
|
|
2247
|
+
export function opendir(path: PathLike, options: OpenDirOptions, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
|
|
2248
2248
|
|
|
2249
2249
|
export namespace opendir {
|
|
2250
|
-
function __promisify__(path:
|
|
2250
|
+
function __promisify__(path: PathLike, options?: OpenDirOptions): Promise<Dir>;
|
|
2251
2251
|
}
|
|
2252
2252
|
|
|
2253
2253
|
export interface BigIntStats extends StatsBase<bigint> {
|
node v14.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.17.
|
|
3
|
+
"version": "14.17.26",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"scripts": {},
|
|
222
222
|
"dependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "ff4e73d377e1774d06794d6507928cb33fc5e57b01d6306d1b1d7c21e8cc9574",
|
|
224
224
|
"typeScriptVersion": "3.7"
|
|
225
225
|
}
|