@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) • 489 B
TypeScript
import { Notifications } from '@open-tender/types';
import { AppState } from '../app';
export declare const showNotification: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "notifications/showNotification">, hideNotification: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "notifications/hideNotification">;
export declare const selectNotifications: (state: AppState) => Notifications;
export declare const notificationsReducer: import("redux").Reducer<Notifications>;