소스 검색

threema.d.ts: Document ClientInfo fields

Danilo Bargen 6 년 전
부모
커밋
a5d35ff5dd
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      src/threema.d.ts

+ 13 - 0
src/threema.d.ts

@@ -661,12 +661,25 @@ declare namespace threema {
     }
 
     interface ClientInfo {
+        // The device name
         device: string;
+
+        // The operating system
         os: OperatingSystem;
+
+        // The operating system version (e.g. "5.1")
         osVersion: string;
+
+        // Whether the app is the *work* variant of Threema
         isWork: boolean;
+
+        // The GCM / APNS push token
         pushToken?: string;
+
+        // The device configuration
         configuration: AppConfig;
+
+        // The device capabilities
         capabilities: AppCapabilities;
     }