No Description

TextMsg.d.ts 189B

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