Merge pull request #25983 from ihalip/scm-resourcegroup-label

Allow changing a SourceControlResourceGroup's label
This commit is contained in:
João Moreno
2017-05-05 12:52:06 +02:00
committed by GitHub
4 changed files with 28 additions and 1 deletions

View File

@@ -297,6 +297,7 @@ export abstract class MainThreadSCMShape {
$registerGroup(sourceControlHandle: number, handle: number, id: string, label: string): void { throw ni(); }
$updateGroup(sourceControlHandle: number, handle: number, features: SCMGroupFeatures): void { throw ni(); }
$updateGroupLabel(sourceControlHandle: number, handle: number, label: string): void { throw ni(); }
$updateGroupResourceStates(sourceControlHandle: number, groupHandle: number, resources: SCMRawResource[]): void { throw ni(); }
$unregisterGroup(sourceControlHandle: number, handle: number): void { throw ni(); }