angular-auth-oidc-client
Version:
Angular Lib for OpenID Connect & OAuth2
16 lines (15 loc) • 413 B
TypeScript
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';
}