UNPKG

@towercg2/server

Version:

The server runtime for the TowerCG2 video graphics system.

9 lines (8 loc) 266 B
import { Action, ActionCreator } from "redux"; export interface IncrementTickAction extends Action { type: "@@TickPlugin/INCREMENT_TICK"; payload: { tickerName: string; }; } export declare const incrementTick: ActionCreator<IncrementTickAction>;