From f48c6f05722d4b7c65b9015e474d38a82ba478af Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Wed, 11 Jun 2025 17:47:49 -0800 Subject: [PATCH] typings: add ZSTD_COMPRESS, ZSTD_DECOMPRESS to internalBinding PR-URL: https://github.com/nodejs/node/pull/58655 Reviewed-By: Yagiz Nizipli Reviewed-By: Xuguang Mei Reviewed-By: Darshan Sen --- typings/internalBinding/constants.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/typings/internalBinding/constants.d.ts b/typings/internalBinding/constants.d.ts index 2c645d99f17..75d2dcc65e8 100644 --- a/typings/internalBinding/constants.d.ts +++ b/typings/internalBinding/constants.d.ts @@ -285,6 +285,8 @@ export interface ConstantsBinding { UNZIP: 7; BROTLI_DECODE: 8; BROTLI_ENCODE: 9; + ZSTD_COMPRESS: 10; + ZSTD_DECOMPRESS: 11; Z_MIN_WINDOWBITS: 8; Z_MAX_WINDOWBITS: 15; Z_DEFAULT_WINDOWBITS: 15;