Interface SourceControlResourceGroup

A source control resource group is a collection of source control resource states.

interface SourceControlResourceGroup {
    hideWhenEmpty?: boolean;
    id: string;
    label: string;
    resourceStates: SourceControlResourceState[];
    dispose(): void;
}

Properties

hideWhenEmpty?: boolean

Whether this source control resource group is hidden when it contains no source control resource states.

id: string

The id of this source control resource group.

label: string

The label of this source control resource group.

resourceStates: SourceControlResourceState[]

This group's collection of source control resource states.

Methods