Interface NotebookCellStatusBarItem

interface NotebookCellStatusBarItem {
    accessibilityInformation?: AccessibilityInformation;
    alignment: CellStatusbarAlignment;
    backgroundColor?: string | ThemeColor;
    color?: string | ThemeColor;
    command?: string | Command & {
        arguments?: unknown[];
    };
    onlyShowWhenActive?: boolean;
    opacity?: string;
    priority?: number;
    text: string;
    tooltip?: string | MarkdownString;
}

Properties

accessibilityInformation?: AccessibilityInformation
backgroundColor?: string | ThemeColor
color?: string | ThemeColor
command?: string | Command & {
    arguments?: unknown[];
}
onlyShowWhenActive?: boolean
opacity?: string
priority?: number
text: string
tooltip?: string | MarkdownString