@open-tender/cloud
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our cloud-based Order API.
8 lines (7 loc) • 421 B
TypeScript
import { AppState } from '../app';
export interface SidebarModalState {
isOpen: boolean;
}
export declare const toggleSidebarModal: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"sidebarModal/toggleSidebarModal">;
export declare const selectSidebarModal: (state: AppState) => SidebarModalState;
export declare const sidebarModalReducer: import("redux").Reducer<SidebarModalState, import("redux").AnyAction>;