@types/node 16.18.125 → 16.18.126
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 +1 -1
- node v16.18/fs/promises.d.ts +2 -2
- node v16.18/package.json +2 -2
node v16.18/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
|
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: Tue, 04 Feb 2025 00:04:06 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v16.18/fs/promises.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ declare module "fs/promises" {
|
|
|
94
94
|
*/
|
|
95
95
|
appendFile(
|
|
96
96
|
data: string | Uint8Array,
|
|
97
|
-
options?: (ObjectEncodingOptions &
|
|
97
|
+
options?: (ObjectEncodingOptions & Abortable) | BufferEncoding | null,
|
|
98
98
|
): Promise<void>;
|
|
99
99
|
/**
|
|
100
100
|
* Changes the ownership of the file. A wrapper for [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html).
|
|
@@ -337,7 +337,7 @@ declare module "fs/promises" {
|
|
|
337
337
|
*/
|
|
338
338
|
writeFile(
|
|
339
339
|
data: string | Uint8Array,
|
|
340
|
-
options?: (ObjectEncodingOptions &
|
|
340
|
+
options?: (ObjectEncodingOptions & Abortable) | BufferEncoding | null,
|
|
341
341
|
): Promise<void>;
|
|
342
342
|
/**
|
|
343
343
|
* Write `buffer` to the file.
|
node v16.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.18.
|
|
3
|
+
"version": "16.18.126",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -213,6 +213,6 @@
|
|
|
213
213
|
"scripts": {},
|
|
214
214
|
"dependencies": {},
|
|
215
215
|
"peerDependencies": {},
|
|
216
|
-
"typesPublisherContentHash": "
|
|
216
|
+
"typesPublisherContentHash": "ff779ca897523e1c09803973a3a29652158b1c1e9d1e3002e69879da1f4ece34",
|
|
217
217
|
"typeScriptVersion": "5.0"
|
|
218
218
|
}
|