Interface AuthenticationProviderAuthenticationSessionsChangeEvent

Should match the definition from the theia/vscode types

interface AuthenticationProviderAuthenticationSessionsChangeEvent {
    added: undefined | readonly AuthenticationSession[];
    changed: undefined | readonly AuthenticationSession[];
    removed: undefined | readonly AuthenticationSession[];
}

Properties

Properties

added: undefined | readonly AuthenticationSession[]
changed: undefined | readonly AuthenticationSession[]
removed: undefined | readonly AuthenticationSession[]