(
user: string | undefined,
prompt?: string,
cancelToken?: vscode.CancellationToken
)
| 47 | } |
| 48 | |
| 49 | export function showPasswordInputBox( |
| 50 | user: string | undefined, |
| 51 | prompt?: string, |
| 52 | cancelToken?: vscode.CancellationToken |
| 53 | ): Promise<string | undefined> { |
| 54 | const msg: string = user ? localize('ssh.enter.password.for.user', 'Enter password for user "{0}"', user) : localize('ssh.message.enter.password', 'Enter password'); |
| 55 | return showInputBox(msg, prompt, cancelToken); |
| 56 | } |
| 57 | |
| 58 | export function showVerificationCodeInputBox( |
| 59 | msg: string, |
nothing calls this directly
no test coverage detected