import { IOrder } from '../models'; export declare enum OrdersHistoryActionTypes { Load = "OrdersHistory.Load", Add = "OrdersHistory.Add" } export interface IOrdersHistoryLoad { type: OrdersHistoryActionTypes.Load; list: IOrder[]; } export interface IOrdersHistoryAdd { type: OrdersHistoryActionTypes.Add; order: IOrder; } export declare class OrdersHistoryActionCreators { static load: (list: IOrder[]) => IOrdersHistoryLoad; static add: (order: IOrder) => IOrdersHistoryAdd; } export declare type IOrdersHistoryAction = IOrdersHistoryLoad | IOrdersHistoryAdd; //# sourceMappingURL=ordersHistory.d.ts.map