@types/node 18.19.74 → 18.19.75
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 v18.19/README.md +1 -1
- node v18.19/fs/promises.d.ts +2 -2
- node v18.19/package.json +2 -2
node v18.19/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/v18.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 04 Feb 2025 00:04:06 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v18.19/fs/promises.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ declare module "fs/promises" {
|
|
|
108
108
|
*/
|
|
109
109
|
appendFile(
|
|
110
110
|
data: string | Uint8Array,
|
|
111
|
-
options?: (ObjectEncodingOptions &
|
|
111
|
+
options?: (ObjectEncodingOptions & Abortable) | BufferEncoding | null,
|
|
112
112
|
): Promise<void>;
|
|
113
113
|
/**
|
|
114
114
|
* Changes the ownership of the file. A wrapper for [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html).
|
|
@@ -390,7 +390,7 @@ declare module "fs/promises" {
|
|
|
390
390
|
*/
|
|
391
391
|
writeFile(
|
|
392
392
|
data: string | Uint8Array,
|
|
393
|
-
options?: (ObjectEncodingOptions &
|
|
393
|
+
options?: (ObjectEncodingOptions & Abortable) | BufferEncoding | null,
|
|
394
394
|
): Promise<void>;
|
|
395
395
|
/**
|
|
396
396
|
* Write `buffer` to the file.
|
node v18.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.19.
|
|
3
|
+
"version": "18.19.75",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
"undici-types": "~5.26.4"
|
|
221
221
|
},
|
|
222
222
|
"peerDependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "2a0d6aa175147eccdbe8e73e860085cf8985c5c90517b4e9fc7d780d763620c8",
|
|
224
224
|
"typeScriptVersion": "5.0"
|
|
225
225
|
}
|