Interface IStatusBar

Main status bar object which contains all widgets.

interface IStatusBar {
    registerStatusItem(id, statusItem): IDisposable;
}

Implemented by

Methods

  • Register a new status item.

    Parameters

    • id: string

      a unique id for the status item.

    • statusItem: IItem

      The options for how to add the status item.

    Returns IDisposable

    an IDisposable that can be disposed to remove the item.