Skip to content

Commit 84a8666

Browse files
committed
update types
1 parent a7d830e commit 84a8666

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/test/datascience/mockQuickPick.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { Event, EventEmitter, QuickInputButton, QuickPick, QuickPickItem, QuickP
66
export class MockQuickPick implements QuickPick<QuickPickItem> {
77
public value: string = '';
88
public placeholder: string | undefined;
9+
public prompt: string | undefined;
910
public title: string | undefined = 'foo';
1011
public step: number | undefined;
1112
public totalSteps: number | undefined;

src/test/datascience/notebook/helper.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1421,6 +1421,7 @@ export async function hijackSavePrompt(
14211421
export class MockQuickPick implements QuickPick<QuickPickItem> {
14221422
value: string;
14231423
placeholder: string | undefined;
1424+
prompt: string | undefined;
14241425
get onDidChangeValue(): Event<string> {
14251426
return this._onDidChangeValueEmitter.event;
14261427
}

0 commit comments

Comments
 (0)