UNPKG

mitt-react

Version:

Lightweight utility for integrating mitt with React

4 lines (3 loc) 144 B
import { type EventType } from "mitt"; export type EventMap = Record<EventType, unknown>; export type EventCallback = (...args: any[]) => void;