UNPKG

angular-auth-oidc-client

Version:
16 lines (15 loc) 413 B
export interface AuthOptions { customParams?: { [key: string]: string | number | boolean; }; urlHandler?(url: string): void; /** overrides redirectUrl from configuration */ redirectUrl?: string; } export interface LogoutAuthOptions { customParams?: { [key: string]: string | number | boolean; }; urlHandler?(url: string): void; logoffMethod?: 'GET' | 'POST'; }