angular-simple-oidc
Version:
Angular Library implementing Open Id Connect specification. Code Flow, Refresh Tokens, Session Management, Discovery Document.
12 lines (11 loc) • 328 B
TypeScript
export interface StartCodeFlowParameters {
/**
* The URL to navigate (using the Router) after
* the token callback has been execute successfully.
* (NOTE: This is not the redirect_uri)
*/
returnUrlAfterCallback?: string;
}
export interface ClaimCollection {
[key: string]: string | (string[]);
}