UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

9 lines (8 loc) 322 B
/// <reference types="react" /> import type { Subscription } from "../StatefulObservable"; /** * Equivalent of https://docs.evt.land/api/react-hooks */ export declare function useObservable(effect: (params: { registerSubscription: (subscription: Subscription) => void; }) => void, deps: React.DependencyList): void;