Created
April 22, 2018 10:07
-
-
Save ShankarSumanth/f9609bfbeab210267dd06951b12191be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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