UNPKG

use-app-events

Version:

Create custom events and reactive variables in vanilla JavaScript and React.

8 lines (7 loc) 329 B
import { BaseListenForEvents } from '../base/listenForEvents/types'; import { Extend } from '../types'; type ListenForEvents<EventType extends string = string> = Extend<BaseListenForEvents<EventType>, { once: BaseListenForEvents<EventType>; }>; declare const listenForEvents: ListenForEvents; export default listenForEvents;