@types/node 22.13.12 → 22.13.13
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 +1 -1
- node/fs.d.ts +2 -2
- node/package.json +2 -2
node/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.
|
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/fs.d.ts
CHANGED
@@ -4012,7 +4012,7 @@ declare module "fs" {
|
|
4012
4012
|
export function writev(
|
4013
4013
|
fd: number,
|
4014
4014
|
buffers: readonly NodeJS.ArrayBufferView[],
|
4015
|
-
position: number,
|
4015
|
+
position: number | null,
|
4016
4016
|
cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void,
|
4017
4017
|
): void;
|
4018
4018
|
export interface WriteVResult {
|
@@ -4057,7 +4057,7 @@ declare module "fs" {
|
|
4057
4057
|
export function readv(
|
4058
4058
|
fd: number,
|
4059
4059
|
buffers: readonly NodeJS.ArrayBufferView[],
|
4060
|
-
position: number,
|
4060
|
+
position: number | null,
|
4061
4061
|
cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void,
|
4062
4062
|
): void;
|
4063
4063
|
export interface ReadVResult {
|
node/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "22.13.
|
3
|
+
"version": "22.13.13",
|
4
4
|
"description": "TypeScript definitions for node",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
6
6
|
"license": "MIT",
|
@@ -215,6 +215,6 @@
|
|
215
215
|
"undici-types": "~6.20.0"
|
216
216
|
},
|
217
217
|
"peerDependencies": {},
|
218
|
-
"typesPublisherContentHash": "
|
218
|
+
"typesPublisherContentHash": "f3a2e98db611f678409d6b493c34823fdbd6bbd6d0da95a15f791f3dc7b19cc6",
|
219
219
|
"typeScriptVersion": "5.0"
|
220
220
|
}
|