UNPKG

@plurid/plurid-react

Version:

React implementation of Plurid to explore the web in three dimensions

11 lines (10 loc) 538 B
import type { AppState } from "../../store"; export interface GeneralState { } export declare const general: import("@reduxjs/toolkit").Slice<GeneralState, {}, "general">; export declare const actions: import("@reduxjs/toolkit").CaseReducerActions<{}, "general">; export declare const getGeneral: (state: AppState) => GeneralState; export declare const selectors: { getGeneral: (state: AppState) => GeneralState; }; export declare const reducer: import("@reduxjs/toolkit").Reducer<GeneralState, import("@reduxjs/toolkit").AnyAction>;