Theia API Documentation v1.65.0
    Preparing search index...

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

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

    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