Interface DocumentColorProvider

interface DocumentColorProvider {
    provideColorPresentations(model, colorInfo): PromiseLike<ColorPresentation[]>;
    provideDocumentColors(model): PromiseLike<ColorInformation[]>;
}

Methods