New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@types/node

Package Overview
Dependencies
Maintainers
1
Versions
2323
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/node - npm Package Compare versions

Comparing version
20.19.37
to
20.19.38
+3
-3
node v20.19/package.json
{
"name": "@types/node",
"version": "20.19.37",
"version": "20.19.38",
"description": "TypeScript definitions for node",

@@ -138,4 +138,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",

"peerDependencies": {},
"typesPublisherContentHash": "232436132f92bb9d0f77b98004c7a2477747cc93116b454e2d1ffaf892e9bdd2",
"typeScriptVersion": "5.2"
"typesPublisherContentHash": "6e3d67a181dc0915a08aad0eb475d34f39ffdec250fbb907362f7790cc3c9ff2",
"typeScriptVersion": "5.3"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Fri, 06 Mar 2026 00:57:44 GMT
* Last updated: Fri, 03 Apr 2026 09:18:15 GMT
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)

@@ -14,0 +14,0 @@

@@ -112,3 +112,3 @@ type _ByteLengthQueuingStrategy = typeof globalThis extends { onmessage: any } ? {}

done: true;
value?: T;
value: T | undefined;
}

@@ -255,3 +255,3 @@ type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;

close(): void;
enqueue(chunk?: R): void;
enqueue(chunk: R): void;
error(e?: any): void;

@@ -284,3 +284,3 @@ }

readonly desiredSize: number | null;
enqueue(chunk?: O): void;
enqueue(chunk: O): void;
error(reason?: any): void;

@@ -321,3 +321,3 @@ terminate(): void;

releaseLock(): void;
write(chunk?: W): Promise<void>;
write(chunk: W): Promise<void>;
}

@@ -346,3 +346,3 @@ const WritableStreamDefaultWriter: {

interface QueuingStrategySize<T = any> {
(chunk?: T): number;
(chunk: T): number;
}

@@ -349,0 +349,0 @@ interface QueuingStrategyInit {