Skip to content

Instantly share code, notes, and snippets.

@ShankarSumanth
Created April 22, 2018 10:07
Show Gist options
  • Save ShankarSumanth/f9609bfbeab210267dd06951b12191be to your computer and use it in GitHub Desktop.
Save ShankarSumanth/f9609bfbeab210267dd06951b12191be to your computer and use it in GitHub Desktop.
export interface KeycloakModel {
readonly isLoggedIn: boolean;
readonly showLoading: boolean;
readonly id: string;
readonly needsLogin: boolean;
}
export interface KeycloakLoginCheckResponse {
loggedIn: boolean;
idmId: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment