UNPKG

mitt-vue

Version:

Lightweight utility for integrating mitt with Vue 2 and Vue 3

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