Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Feb 23, 2025
1 parent 851ee49 commit 1e2e293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/services/statusbar/browser/statusbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { DisposableStore, IDisposable } from '../../../../base/common/lifecycle.
import { ThemeColor } from '../../../../base/common/themables.js';
import { Command } from '../../../../editor/common/languages.js';
import { IMarkdownString } from '../../../../base/common/htmlContent.js';
import { IManagedHoverContentOrFactory, IManagedHoverTooltipMarkdownString } from '../../../../base/browser/ui/hover/hover.js';
import { IManagedHoverContentOrFactory } from '../../../../base/browser/ui/hover/hover.js';
import { ColorIdentifier } from '../../../../platform/theme/common/colorRegistry.js';
import { IAuxiliaryStatusbarPart, IStatusbarEntryContainer } from '../../../browser/parts/statusbar/statusbarPart.js';

Expand Down Expand Up @@ -112,7 +112,7 @@ export interface IStatusbarStyleOverride {
export type StatusbarEntryKind = 'standard' | 'warning' | 'error' | 'prominent' | 'remote' | 'offline' | 'copilot';
export const StatusbarEntryKinds: StatusbarEntryKind[] = ['standard', 'warning', 'error', 'prominent', 'remote', 'offline', 'copilot'];

export type TooltipContent = string | IMarkdownString | IManagedHoverTooltipMarkdownString | HTMLElement | IManagedHoverContentOrFactory;
export type TooltipContent = IMarkdownString | IManagedHoverContentOrFactory;

export interface ITooltipWithCommands {
readonly content: TooltipContent;
Expand Down

0 comments on commit 1e2e293

Please sign in to comment.