Interface StatusBarMessageRegistryMain

interface StatusBarMessageRegistryMain {
    $dispose(id): void;
    $setMessage(id, name, text, priority, alignment, color, backgroundColor, tooltip, command, accessibilityInformation, args): PromiseLike<void>;
}

Implemented by

Methods

  • Parameters

    • id: string
    • name: undefined | string
    • text: undefined | string
    • priority: number
    • alignment: StatusBarAlignment
    • color: undefined | string
    • backgroundColor: undefined | string
    • tooltip: undefined | string | MarkdownString
    • command: undefined | string
    • accessibilityInformation: AccessibilityInformation
    • args: undefined | any[]

    Returns PromiseLike<void>