From bd9ba4aac6302ff7926f1b82e4c5e6c84051f13f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Fri, 12 Dec 2025 00:33:17 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#74208=20node:=20re?= =?UTF-8?q?-add=20deprecated=20`EncodeIntoResult`=20alias=20in=20v25=20by?= =?UTF-8?q?=20@Renegade334?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/node/util.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/types/node/util.d.ts b/types/node/util.d.ts index 6e0a44db8922ca..70fd51a0285062 100644 --- a/types/node/util.d.ts +++ b/types/node/util.d.ts @@ -1246,6 +1246,9 @@ declare module "node:util" { text: string, options?: StyleTextOptions, ): string; + /** @deprecated This alias will be removed in a future version. Use the canonical `TextEncoderEncodeIntoResult` instead. */ + // TODO: remove in future major + export interface EncodeIntoResult extends TextEncoderEncodeIntoResult {} //// parseArgs /** * Provides a higher level API for command-line argument parsing than interacting