No Description

AttachmentMsg.d.ts 207B

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