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