redux-dynamic-modules-beacon
Version:
redux-beacon integration for redux dynamic modules.
12 lines (11 loc) • 422 B
TypeScript
import { Action } from 'redux';
import { EventDefinition, EventsMap, EventsMapper } from 'redux-beacon';
export declare class EventsManager {
private eventsMaps;
private getEventsMaps;
getEventsMap: (action: Action) => EventDefinition<any, {
[key: string]: any;
}, any>[];
addEventsMap(eventMap: EventsMap | EventsMapper): void;
removeEventsMap(eventMap: EventsMap | EventsMapper): void;
}