UNPKG

@towercg2/server

Version:

The server runtime for the TowerCG2 video graphics system.

9 lines (8 loc) 365 B
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>;