UNPKG

273 BTypeScriptView Raw
1import Dispatcher from '../../util/dispatcher';
2export declare abstract class BaseActions<ACTIONS> {
3 private readonly dispatcher;
4 constructor(dispatcher: Dispatcher<any>);
5 protected dispatch<K extends keyof ACTIONS>(type: K, payload: ACTIONS[K]): void;
6}