x4js - v2.2.49
    Preparing search index...

    A provider of colors for editor models.

    interface DocumentColorProvider {
        provideColorPresentations(
            model: ITextModel,
            colorInfo: IColorInformation,
            token: CancellationToken,
        ): ProviderResult<IColorPresentation[]>;
        provideDocumentColors(
            model: ITextModel,
            token: CancellationToken,
        ): ProviderResult<IColorInformation[]>;
    }
    Index