UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

15 lines (14 loc) 330 B
export type KcContextLike = { url: { resourcesCommonPath: string; resourcesPath: string; ssoLoginInOtherTabsUrl: string; }; scripts?: string[]; }; export declare function useInitialize(params: { kcContext: KcContextLike; doUseDefaultCss: boolean; }): { isReadyToRender: boolean; };