@types/node 18.19.16 → 18.19.18
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/buffer.d.ts +134 -102
- node v18.19/net.d.ts +5 -0
- node v18.19/package.json +2 -2
- node v18.19/ts4.8/buffer.d.ts +134 -102
- node v18.19/ts4.8/net.d.ts +5 -0
node v18.19/net.d.ts
CHANGED
|
@@ -723,6 +723,11 @@ declare module "net" {
|
|
|
723
723
|
*/
|
|
724
724
|
check(address: SocketAddress): boolean;
|
|
725
725
|
check(address: string, type?: IPVersion): boolean;
|
|
726
|
+
/**
|
|
727
|
+
* The list of rules added to the blocklist.
|
|
728
|
+
* @since v15.0.0, v14.18.0
|
|
729
|
+
*/
|
|
730
|
+
rules: readonly string[];
|
|
726
731
|
}
|
|
727
732
|
interface TcpNetConnectOpts extends TcpSocketConnectOpts, SocketConstructorOpts {
|
|
728
733
|
timeout?: number | undefined;
|
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.18",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -229,6 +229,6 @@
|
|
|
229
229
|
"dependencies": {
|
|
230
230
|
"undici-types": "~5.26.4"
|
|
231
231
|
},
|
|
232
|
-
"typesPublisherContentHash": "
|
|
232
|
+
"typesPublisherContentHash": "2a8db29cd67964b31d9f4802164e1f8c35323fc6abfcdaaf8bb63f432735cef0",
|
|
233
233
|
"typeScriptVersion": "4.6"
|
|
234
234
|
}
|