nativescript-vue-router-extended
Version:
NativeScript Vue Router Extended for NativeScript Vue hybrid Apps.
9 lines (8 loc) • 339 B
TypeScript
import { RouterService } from "./router-service";
export declare class RouterDispatcherService {
store: any;
constructor(store: any);
dispatchFromMeta(meta: any): boolean;
dispatch(type: string, payload: unknown): Promise<void>;
}
export declare const registerActionDispatcher: (router: RouterService, store: any) => void;