From 49b49627f1097be4c081d810979d3def822ce492 Mon Sep 17 00:00:00 2001 From: TatLead Date: Wed, 24 Dec 2025 07:10:12 +0800 Subject: [PATCH] Fix incorrect ITheme reference in comments --- typings/xterm.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 18709d71..c1a9f80c 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -367,17 +367,17 @@ declare module '@xterm/xterm' { selectionInactiveBackground?: string; /** * The scrollbar slider background color. Defaults to - * {@link ITerminalOptions.foreground foreground} with 20% opacity. + * {@link ITheme.foreground} with 20% opacity. */ scrollbarSliderBackground?: string; /** * The scrollbar slider background color when hovered. Defaults to - * {@link ITerminalOptions.foreground foreground} with 40% opacity. + * {@link ITheme.foreground} with 40% opacity. */ scrollbarSliderHoverBackground?: string; /** * The scrollbar slider background color when clicked. Defaults to - * {@link ITerminalOptions.foreground foreground} with 50% opacity. + * {@link ITheme.foreground} with 50% opacity. */ scrollbarSliderActiveBackground?: string; /**