From 9eeb2799c1c405f3bd6da468791e96ade7c3f15f Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Sat, 7 Feb 2026 06:17:35 -0800 Subject: [PATCH] Remove internal details about underline cell APIs --- typings/xterm-headless.d.ts | 6 +++--- typings/xterm.d.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/typings/xterm-headless.d.ts b/typings/xterm-headless.d.ts index fd92d424..de8d06c4 100644 --- a/typings/xterm-headless.d.ts +++ b/typings/xterm-headless.d.ts @@ -1219,11 +1219,11 @@ declare module '@xterm/headless' { /** Whether the cell has the default attribute (no color or style). */ isAttributeDefault(): boolean; - /** Gets the underline style, see {@link UnderlineStyle}. */ + /** Gets the underline style. */ getUnderlineStyle(): number; - /** Gets the underline color number, following the same rules as foreground colors. */ + /** Gets the underline color number. */ getUnderlineColor(): number; - /** Gets the underline color mode, see {@link Attributes.CM_DEFAULT} etc. */ + /** Gets the underline color mode. */ getUnderlineColorMode(): number; /** Whether the cell is using the RGB underline color mode. */ isUnderlineColorRGB(): boolean; diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 93b364da..c8e08f50 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -1854,11 +1854,11 @@ declare module '@xterm/xterm' { /** Whether the cell has the default attribute (no color or style). */ isAttributeDefault(): boolean; - /** Gets the underline style, see {@link UnderlineStyle}. */ + /** Gets the underline style. */ getUnderlineStyle(): number; - /** Gets the underline color number, following the same rules as foreground colors. */ + /** Gets the underline color number. */ getUnderlineColor(): number; - /** Gets the underline color mode, see {@link Attributes.CM_DEFAULT} etc. */ + /** Gets the underline color mode. */ getUnderlineColorMode(): number; /** Whether the cell is using the RGB underline color mode. */ isUnderlineColorRGB(): boolean;