@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.
6 lines (5 loc) • 534 B
TypeScript
import { Alerts } from '@open-tender/types';
import { AppState } from '../app';
export declare const clearAlerts: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"alerts/clearAlerts">, addAlert: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "alerts/addAlert">, dismissAlert: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "alerts/dismissAlert">;
export declare const selectAlerts: (state: AppState) => Alerts;
export declare const alertsReducer: import("redux").Reducer<Alerts, import("redux").AnyAction>;