@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/ts4.8/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;
|