Skip to content

Commit b662824

Browse files
committed
Add isOverline to public API
Part of #4529
1 parent 7460782 commit b662824

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

typings/xterm-headless.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,8 @@ declare module 'xterm-headless' {
999999
isInvisible(): number;
10001000
/** Whether the cell has the strikethrough attribute (CSI 9 m). */
10011001
isStrikethrough(): number;
1002+
/** Whether the cell has the overline attribute (CSI 53 m). */
1003+
isOverline(): number;
10021004

10031005
/** Whether the cell is using the RGB foreground color mode. */
10041006
isFgRGB(): boolean;

typings/xterm.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1516,6 +1516,8 @@ declare module 'xterm' {
15161516
isInvisible(): number;
15171517
/** Whether the cell has the strikethrough attribute (CSI 9 m). */
15181518
isStrikethrough(): number;
1519+
/** Whether the cell has the overline attribute (CSI 53 m). */
1520+
isOverline(): number;
15191521

15201522
/** Whether the cell is using the RGB foreground color mode. */
15211523
isFgRGB(): boolean;

0 commit comments

Comments
 (0)