Rename Session to AuthenticationSession

This commit is contained in:
Rachel Macfarlane
2020-02-03 09:59:59 -08:00
parent 05567322f7
commit c52bfa8906
7 changed files with 21 additions and 21 deletions

View File

@@ -918,8 +918,8 @@ export interface ExtHostLabelServiceShape {
}
export interface ExtHostAuthenticationShape {
$getSessions(id: string): Promise<ReadonlyArray<modes.Session>>;
$login(id: string, scopes: string[]): Promise<modes.Session>;
$getSessions(id: string): Promise<ReadonlyArray<modes.AuthenticationSession>>;
$login(id: string, scopes: string[]): Promise<modes.AuthenticationSession>;
$logout(id: string, sessionId: string): Promise<void>;
}