UNPKG

@pivanov/utils

Version:

A focused collection of TypeScript utilities for modern web development

4 lines (3 loc) 256 B
import { type DependencyList } from "react"; import type { IEventBus, TEventBusListener } from "./types"; export declare const useEventBus: <T extends IEventBus>(topic: T["topic"], listener: TEventBusListener<T["message"]>, deps?: DependencyList) => void;