react-native-twopane-navigation
Version:
React Native package for dual screen devices navigation support (Surface Duo)
19 lines (18 loc) • 882 B
TypeScript
declare const rootReducer: import("redux").Reducer<import("redux").CombinedState<{
KeyReducers: import(".").IKeyState;
headerReducer: import(".").IHeaderState;
PaneElementReducer: import(".").IPaneElementState;
utilityStoreReducer: import(".").IUtilityStoreState;
}>, import(".").IHeaderAction | import(".").IKeyAction | import(".").IPaneElementAction | import(".").IUtilityStoreAction>;
interface IEmptyApp {
type: string;
}
export declare type rootReducerType = ReturnType<typeof rootReducer>;
export declare const resetApp: () => IEmptyApp;
export declare const store: import("redux").Store<import("redux").CombinedState<{
KeyReducers: import(".").IKeyState;
headerReducer: import(".").IHeaderState;
PaneElementReducer: import(".").IPaneElementState;
utilityStoreReducer: import(".").IUtilityStoreState;
}>, any>;
export {};