UNPKG

745 BTypeScriptView Raw
1import { LocationSegments, RouterHistory, RouteViewOptions, HistoryType } from './interfaces';
2export interface ActiveRouterState {
3 historyType: HistoryType;
4 location: LocationSegments;
5 titleSuffix: string;
6 root: string;
7 history?: RouterHistory;
8 routeViewsUpdated: (options: RouteViewOptions) => void;
9}
10declare const _default: {
11 Provider: import("@stencil/state-tunnel/dist/types/stencil.core").FunctionalComponent<{
12 state: ActiveRouterState;
13 }>;
14 Consumer: import("@stencil/state-tunnel/dist/types/stencil.core").FunctionalComponent<{}>;
15 injectProps: (Cstr: any, fieldList: import("@stencil/state-tunnel/dist/types/declarations").PropList<ActiveRouterState>) => void;
16};
17export default _default;