Skip to content

Commit

Permalink
Add comment to AuthenticationProvider API
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachel Macfarlane committed Jan 27, 2020
1 parent 40173ec commit 8d36d09
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/vs/vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ declare module 'vscode' {
}

export interface AuthenticationProvider {
/**
* Used as an identifier for extensions trying to work with a particular
* provider: 'Microsoft', 'GitHub', etc. id must be unique, registering
* another provider with the same id will fail.
*/
readonly id: string;
readonly displayName: string;
readonly onDidChangeSessions: Event<void>;
Expand Down

0 comments on commit 8d36d09

Please sign in to comment.