AuthSessionResult
typetype AuthSessionResult = { kind: 'session'; session: AuthenticationSession } | { kind: 'no-session' } | { kind: 'permission-required'; providerId: string } | { kind: 'permission-denied'; providerId: string; reason: string } | { kind: 'scopes-unsatisfied'; missing: readonly string[] }
Import
import { AuthSessionResult } from '@modular/sdk';