Interface FileDecorationProvider

The decoration provider interfaces defines the contract between extensions and file decorations.

interface FileDecorationProvider {
    onDidChangeFileDecorations?: Event<undefined | Uri | Uri[]>;
    provideFileDecoration(uri, token): ProviderResult<FileDecoration>;
}

Properties

onDidChangeFileDecorations?: Event<undefined | Uri | Uri[]>

An optional event to signal that decorations for one or many files have changed.

Note that this event should be used to propagate information about children.

Methods