keycloak-react-web
Version:
Keycloak React Web has been built on top of keycloak-js extending all of its functionalities to provide a global authentication support for your react applications.
7 lines (6 loc) • 321 B
TypeScript
import React from "react";
import { IAuthContextProps } from "./keycloakContext";
import type { KeycloakAuthProviderProps } from "./interfaces";
declare const KeycloakProvider: React.FC<KeycloakAuthProviderProps>;
export declare const KeycloakConsumer: React.Consumer<IAuthContextProps>;
export default KeycloakProvider;