Paul 5 年 前
コミット
af5ff97d6e
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      packages/cts-api/src/protocol/CmdMsg.ts

+ 1
- 1
packages/cts-api/src/protocol/CmdMsg.ts ファイルの表示

1
 import { MsgBase, MsgType } from './MsgBase';
1
 import { MsgBase, MsgType } from './MsgBase';
2
 
2
 
3
 export class CmdMsg extends MsgBase {
3
 export class CmdMsg extends MsgBase {
4
-  type: MsgType = 'cmd';
4
+  msgType: MsgType = 'cmd';
5
 
5
 
6
   // 消息内容
6
   // 消息内容
7
   msg: string;
7
   msg: string;