fgp-auth
Version:
fgp-auth is a token based auth lib and base on "auth0 and keycloak.
14 lines (13 loc) • 367 B
TypeScript
import { AuthProps } from "../vo/fgp.auth.props";
import Keycloak from 'keycloak-js';
import { Auth } from "../auth";
export declare class KeycloakAuth implements Auth {
foo: string;
name: string;
version: string;
props: AuthProps;
kc: Keycloak.KeycloakInstance;
constructor(props: AuthProps);
init(): void;
updateState: () => void;
}