UNPKG

@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) 516 B
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, import("redux").AnyAction>;