A query for the effective contributed feature states for a list of feature ids

interface ContributedFeatureStateQuery {
    featureIds?: string[];
    featureStates?: { [key: string]: ContributedFeatureState };
    scopeValues?: { [key: string]: string };
}

Properties

featureIds?: string[]

The list of feature ids to query

featureStates?: { [key: string]: ContributedFeatureState }

The query result containing the current feature states for each of the queried feature ids

scopeValues?: { [key: string]: string }

A dictionary of scope values (project name, etc.) to use in the query (if querying across scopes)