Interface DecorationsProvider

interface DecorationsProvider {
    onDidChange: Event<URI[]>;
    provideDecorations(uri, token): undefined | Decoration | Promise<undefined | Decoration>;
}

Properties

onDidChange: Event<URI[]>

Methods