@open-tender/store
Version:
A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API
6 lines (5 loc) • 507 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>;