A provider of colors for editor models.

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

Methods