import { Event, Action } from '../'; type SubscriberFn = (event: Event) => Promise | void; type SubscriberMap = { [k in Action]: SubscriberFn; }; export type Subscriber = SubscriberFn | SubscriberMap;