소스 검색

add getter

Paul 5 년 전
부모
커밋
625288beb9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/index.ts

+ 1
- 1
src/index.ts 파일 보기

@@ -123,7 +123,7 @@ class Client {
123 123
   }
124 124
 
125 125
   // 获取socket的链接状态
126
-  public getReadyState(): number {
126
+  public get readyState(): number {
127 127
     return this.socket.readyState;
128 128
   }
129 129