make it possible to change a SCMResourceGroup's label

This commit is contained in:
Ilie Halip
2017-05-05 08:36:40 +03:00
parent 76ec19f240
commit 4fce360efb
4 changed files with 28 additions and 1 deletions

View File

@@ -295,6 +295,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(); }