Interface StatusBar

interface StatusBar {
    removeElement(id): Promise<void>;
    setBackgroundColor(color?): Promise<void>;
    setColor(color?): Promise<void>;
    setElement(id, entry): Promise<void>;
}

Implemented by

Methods