소스 검색

fix cmd msg

Paul 4 년 전
부모
커밋
af5ff97d6e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      packages/cts-api/src/protocol/CmdMsg.ts

+ 1
- 1
packages/cts-api/src/protocol/CmdMsg.ts 파일 보기

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