import { ITicker, ITickers } from '../models'; export declare enum TickerActionTypes { Load = "Ticker.Load", Update = "Ticker.Update" } export interface ITickerLoad { type: TickerActionTypes.Load; tickers: ITickers; } export interface ITickerUpdate { type: TickerActionTypes.Update; ticker: ITicker; } export declare class TickerActionCreators { static load: (tickers: ITickers) => ITickerLoad; static update: (ticker: ITicker) => ITickerUpdate; } export declare type ITickerAction = ITickerLoad | ITickerUpdate; //# sourceMappingURL=ticker.d.ts.map