UNPKG

quick-event

Version:

quick-event is a TypeScript event library that provides tools that enable your application components to communicate with each other by dispatching events and listening for them. With eventpp you can easily implement signal/slot mechanism, or observer pat

18 lines (17 loc) 508 B
import { CallbackNode } from "./callback_node"; import { MixinFilter } from "./mixins"; import { CallbackList } from './callback_list'; import { EventDispatcher } from './event_dispatcher'; import { EventQueue } from "./event_queue"; import { QuickEventParams, ArgumentPassingMode, Callback, Filter } from "./types"; export { CallbackNode, MixinFilter, CallbackList, EventDispatcher, EventQueue, QuickEventParams, ArgumentPassingMode, Callback, Filter };