💥 scm state -> stateContextKey

This commit is contained in:
Joao Moreno
2017-03-27 11:54:17 +02:00
parent 75576e3cca
commit 3d0b9755d3
7 changed files with 10 additions and 10 deletions

View File

@@ -274,7 +274,7 @@ export type SCMRawResourceGroup = [
export abstract class MainThreadSCMShape {
$register(handle: number, features: SCMProviderFeatures): void { throw ni(); }
$unregister(handle: number): void { throw ni(); }
$onChange(handle: number, resources: SCMRawResourceGroup[], count: number | undefined, state: string | undefined): void { throw ni(); }
$onChange(handle: number, resources: SCMRawResourceGroup[], count: number | undefined, stateContextKey: string | undefined): void { throw ni(); }
$setInputBoxValue(value: string): void { throw ni(); }
}