UNPKG

339 BTypeScriptView Raw
1import { RouterService } from "./router-service";
2export declare class RouterDispatcherService {
3 store: any;
4 constructor(store: any);
5 dispatchFromMeta(meta: any): boolean;
6 dispatch(type: string, payload: unknown): Promise<void>;
7}
8export declare const registerActionDispatcher: (router: RouterService, store: any) => void;