UNPKG

@keycloakify/keycloak-account-ui

Version:
4 lines (3 loc) 226 B
import type { Context } from "react"; export type NamedContext<T> = Context<T> & Required<Pick<Context<T>, "displayName">>; export declare function createNamedContext<T>(displayName: string, defaultValue: T): NamedContext<T>;