Interface ChangeSetDecorator

interface ChangeSetDecorator {
    id: string;
    onDidChangeDecorations: Event<void>;
    decorate(element): undefined | ChangeSetDecoration;
}

Properties

id: string
onDidChangeDecorations: Event<void>

Methods