Interface DocumentRangeSemanticTokensProvider

interface DocumentRangeSemanticTokensProvider {
    getLegend(): SemanticTokensLegend;
    provideDocumentRangeSemanticTokens(model, range, token): ProviderResult<SemanticTokens>;
}

Methods