whodis-react
Version:
React hooks and components for secure, best practices authentication in seconds
13 lines (12 loc) • 399 B
TypeScript
/// <reference types="react" />
import { WhodisAuthTokenClaims } from 'whodis-client';
interface AuthenticationContextState {
claims: WhodisAuthTokenClaims | null | undefined;
directoryUuid: string;
clientUuid: string;
override?: {
hostname?: string;
};
}
export declare const AuthenticationContext: import("react").Context<AuthenticationContextState | null>;
export {};