@plurid/plurid-react
Version:
React implementation of Plurid to explore the web in three dimensions
11 lines (10 loc) • 587 B
TypeScript
declare const reducer: import("@reduxjs/toolkit").Reducer<import("@reduxjs/toolkit").CombinedState<{
configuration: import("../../modules/configuration").ConfigurationState;
general: import("../../modules/general").GeneralState;
shortcuts: import("../../modules/shortcuts").ShortcutsState;
space: import("@plurid/plurid-data").PluridStateSpace;
themes: import("../../modules/themes").ThemesState;
ui: import("../../modules/ui").UIState;
}>, import("@reduxjs/toolkit").AnyAction>;
export declare type AppState = ReturnType<typeof reducer>;
export default reducer;