@towercg2/server
Version:
The server runtime for the TowerCG2 video graphics system.
9 lines (8 loc) • 365 B
TypeScript
import { Action, ActionCreator } from "redux";
import { ClientInfo } from "@towercg2/client";
export interface UpdateClientAction extends Action {
type: "@@RosterPlugin/UPDATE_CLIENTS";
payload: Array<ClientInfo>;
}
export declare const updateClients: ActionCreator<UpdateClientAction>;
export declare const clearClients: ActionCreator<UpdateClientAction>;