Interface TabBarDecorator

interface TabBarDecorator {
    id: string;
    onDidChangeDecorations: Event<void>;
    decorate(title): core.Data[];
}

Properties

id: string

The unique identifier of the tab bar decorator.

onDidChangeDecorations: Event<void>

Event that is fired when any of the available tab bar decorators has changes.

Methods