UNPKG

oidc-client-rx

Version:

ReactiveX enhanced OIDC and OAuth2 protocol support for browser-based JavaScript applications

16 lines 455 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"; } //# sourceMappingURL=auth-options.d.ts.map