No Description

CmdMsg.d.ts 206B

12345678
  1. import { MsgBase, MsgType } from './MsgBase';
  2. export declare class CmdMsg extends MsgBase {
  3. type: MsgType;
  4. msg: string;
  5. action: string;
  6. static createMsg(baseMsg: Partial<CmdMsg>): CmdMsg;
  7. }