Remove internal details about underline cell APIs

This commit is contained in:
Daniel Imms
2026-02-07 06:24:47 -08:00
parent cc8e680790
commit 9eeb2799c1
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -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;
+3 -3
View File
@@ -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;