File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ interface InputBoxParameters {
7676 validate ( value : string ) : Promise < string | undefined > ;
7777}
7878
79- type MultiStepInputQuickPicResponseType < T , P > = T | ( P extends { buttons : ( infer I ) [ ] } ? I : never ) | undefined ;
79+ type MultiStepInputQuickPickResponseType < T , P > = T | ( P extends { buttons : ( infer I ) [ ] } ? I : never ) | undefined ;
8080type MultiStepInputInputBoxResponseType < P > = string | ( P extends { buttons : ( infer I ) [ ] } ? I : never ) | undefined ;
8181export interface IMultiStepInput < S > {
8282 run ( start : InputStep < S > , state : S ) : Promise < void > ;
@@ -88,7 +88,7 @@ export interface IMultiStepInput<S> {
8888 activeItem,
8989 placeholder,
9090 customButtonSetups,
91- } : P ) : Promise < MultiStepInputQuickPicResponseType < T , P > > ;
91+ } : P ) : Promise < MultiStepInputQuickPickResponseType < T , P > > ;
9292 showInputBox < P extends InputBoxParameters > ( {
9393 title,
9494 step,
@@ -126,7 +126,7 @@ export class MultiStepInput<S> implements IMultiStepInput<S> {
126126 keepScrollPosition,
127127 sortByLabel,
128128 initialize,
129- } : P ) : Promise < MultiStepInputQuickPicResponseType < T , P > > {
129+ } : P ) : Promise < MultiStepInputQuickPickResponseType < T , P > > {
130130 const disposables : Disposable [ ] = [ ] ;
131131 const input = this . shell . createQuickPick < T > ( ) ;
132132 input . title = title ;
You can’t perform that action at this time.
0 commit comments