@types/node 18.19.82 → 18.19.83
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.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: Mon, 24 Mar 2025
|
|
11
|
+
* Last updated: Mon, 24 Mar 2025 11:02:21 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v18.19/fs.d.ts
CHANGED
|
@@ -4023,7 +4023,7 @@ declare module "fs" {
|
|
|
4023
4023
|
export function writev(
|
|
4024
4024
|
fd: number,
|
|
4025
4025
|
buffers: readonly NodeJS.ArrayBufferView[],
|
|
4026
|
-
position: number,
|
|
4026
|
+
position: number | null,
|
|
4027
4027
|
cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void,
|
|
4028
4028
|
): void;
|
|
4029
4029
|
export interface WriteVResult {
|
|
@@ -4066,7 +4066,7 @@ declare module "fs" {
|
|
|
4066
4066
|
export function readv(
|
|
4067
4067
|
fd: number,
|
|
4068
4068
|
buffers: readonly NodeJS.ArrayBufferView[],
|
|
4069
|
-
position: number,
|
|
4069
|
+
position: number | null,
|
|
4070
4070
|
cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void,
|
|
4071
4071
|
): void;
|
|
4072
4072
|
export interface ReadVResult {
|
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.83",
|
|
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": "d72ab32bc4e0c437229783b432949c6257b3d9108125eee475bf098f0cbbf447",
|
|
224
224
|
"typeScriptVersion": "5.0"
|
|
225
225
|
}
|