Interface DecorationsService

interface DecorationsService {
    onDidChangeDecorations: Event<Map<string, Decoration>>;
    getDecoration(uri, includeChildren): Decoration[];
    registerDecorationsProvider(provider): Disposable;
}

Implemented by

Properties

onDidChangeDecorations: Event<Map<string, Decoration>>

Methods