UNPKG

686 BTypeScriptView Raw
1import { HistoryCreator, MyHistoryOptions } from "@gongt/ts-stl-library/browser/history-object";
2import { GlobalVariable } from "@gongt/ts-stl-library/pattern/global-page-data";
3import { ReactRender } from "../../react/render";
4import { ReduxStoreWindow } from "../../redux/store-client";
5import { ReduxStore } from "../store";
6export interface ReduxRouterOptions {
7 history: HistoryCreator;
8}
9export declare function reduxHandleReactRouter(react: ReactRender, redux: ReduxStoreWindow<any>, options?: MyHistoryOptions): void;
10export declare function reduxHandleReactRouterBase(react: ReactRender, redux: ReduxStore<any>, options: (global: GlobalVariable) => MyHistoryOptions): void;