mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
web - change API to URI (from UriComponents)
This commit is contained in:
@@ -10,7 +10,9 @@ import { IWorkbenchEnvironmentService } from 'vs/workbench/services/environment/
|
||||
export interface ICredentialsProvider {
|
||||
getPassword(service: string, account: string): Promise<string | null>;
|
||||
setPassword(service: string, account: string, password: string): Promise<void>;
|
||||
|
||||
deletePassword(service: string, account: string): Promise<boolean>;
|
||||
|
||||
findPassword(service: string): Promise<string | null>;
|
||||
findCredentials(service: string): Promise<Array<{ account: string, password: string }>>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user