interface.uts 9.5 KB
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
export interface Uni {
  /**
    * getSystemInfo()
    * @description 
    * 异步获取系统信息
    * @param {GetSystemInfoOptions}  options
    * @return {void}
    * @tutorial http://uniapp.dcloud.io/api/system/info?id=getsysteminfo
    * @uniPlatform {
    *    "app": {
    *        "android": {
    *            "osVer": "4.4",
    *  		  	 "uniVer": "√",
    * 			 "unixVer": "3.9+"
    *        },
    *        "ios": {
    *            "osVer": "9.0",
    *  		  	 "uniVer": "√",
    * 			 "unixVer": "x"
    *        }
    *    }
    * }
    * @example
     ```typescript
      uni.getSystemInfo({
        success(e) {
          console.log("success :",e);
        },
        complete(e) {
          console.log("complete :",e);
        }
      })
     ```
    */
  getSystemInfo(options: GetSystemInfoOptions): void;

  /**
    * getSystemInfoSync()
    * @description 
    * 同步获取系统信息
    * @param {void}  
    * @return {GetSystemInfoResult}
    * @tutorial http://uniapp.dcloud.io/api/system/info?id=getsysteminfosync
    * @uniPlatform {
    *    "app": {
    *        "android": {
    *            "osVer": "4.4",
    *  		  	 "uniVer": "√",
    * 			 "unixVer": "3.9+"
    *        },
    *        "ios": {
    *            "osVer": "9.0",
    *  		  	 "uniVer": "√",
    * 			 "unixVer": "x"
    *        }
    *    }
    * }
    * @example
     ```typescript
      uni.getSystemInfoSync()
     ```
    */
  getSystemInfoSync(): GetSystemInfoResult;

  /**
    * getWindowInfo()
    * @description 
    * 同步获取窗口信息
    * @param {void}  
    * @return {GetWindowInfoResult} result
    * @tutorial http://uniapp.dcloud.io/api/system/getWindowInfo.html
    * @uniPlatform {
    *    "app": {
    *        "android": {
    *            "osVer": "4.4",
    *  		  	 "uniVer": "√",
    * 			 "unixVer": "3.9+"
    *        },
    *        "ios": {
    *            "osVer": "9.0",
    *  		  	 "uniVer": "√",
    * 			 "unixVer": "x"
    *        }
    *    }
    * }
    * @example
     ```typescript
      uni.getWindowInfo()
     ```
    */
  getWindowInfo(): GetWindowInfoResult;
}

export type GetSystemInfo = (options: GetSystemInfoOptions) => void;
export type GetSystemInfoSync = () => GetSystemInfoResult;
export type GetWindowInfo = () => GetWindowInfoResult;
export type SafeArea = {
  /**
   * 安全区域左上角横坐标
   */
  left: number,
  /**
   * 安全区域右下角横坐标
   */
  right: number,
  /**
   * 安全区域左上角纵坐标
   */
  top: number,
  /**
   * 安全区域右下角纵坐标
   */
  bottom: number,
  /**
   * 安全区域的宽度,单位逻辑像素
   */
  width: number,
  /**
   * 安全区域的高度,单位逻辑像素
   */
  height: number
};
export type SafeAreaInsets = {
  /**
   * 安全区域左侧插入位置
   */
  left: number,
  /**
   * 安全区域右侧插入位置
   */
  right: number,
  /**
   * 安全区顶部插入位置
   */
  top: number,
  /**
   * 安全区域底部插入位置
   */
  bottom: number
};
export type GetSystemInfoResult = {
  /**
   * 客户端基础库版本
   */
  SDKVersion: string,
  /**
   * `manifest.json` 中应用appid。
   */
  appId: string,
  /**
   * 应用设置的语言。
   */
  appLanguage: string,
  /**
   * `manifest.json` 中应用名称。
   */
  appName: string,
  /**
   * `manifest.json` 中应用版本名称。
   */
  appVersion: string,
  /**
   * `manifest.json` 中应用版本名号。
   */
  appVersionCode: string,
  /**
   * 应用资源(wgt)的版本名称。
   * 
   * @uniPlatform {
   *    "app": {
   *        "android": {
   *            "osVer": "4.4",
   *  		  	 "uniVer": "√",
   * 			 "unixVer": "x"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *  		  	 "uniVer": "√",
   * 			 "unixVer": "x"
   *        }
   *    }
   * }
   */
  appWgtVersion: string | null,
  /**
   * 手机品牌。
   */
  brand: string,
  /**
   * 浏览器名称。`App` 端是系统 webview 的名字,比如 wkwebview、chrome。小程序端为空
   */
  browserName: string,
  /**
   * 浏览器版本、webview 版本。
   */
  browserVersion: string,
  /**
   * 设备 ID
   */
  deviceId: string,
  /**
   * 设备品牌。如:`apple`、`huawei`。
   */
  deviceBrand: string,
  /**
   * 设备型号
   */
  deviceModel: string,
  /**
   * 设备类型。`phone`、`pad`、`pc`
   */
  deviceType: string,
  /**
   * 设备像素比
   */
  devicePixelRatio: number,
  /**
   * 设备方向。如:`竖屏 portrait`、`横屏 landscape`
   * - portrait: 竖屏
   * - landscape: 横屏
   * @type 'portrait' | 'landscape'
   */
  deviceOrientation: string,
  /**
   * 程序设置的语言
   */
  language: string,
  /**
   * 手机型号
   */
  model: string,
  /**
   * ios、android、windows、mac、linux
   */
  osName: string,
  /**
   * 操作系统版本。如 ios 版本,andriod 版本
   */
  osVersion: string,
  /**
   * 操作系统语言
   */
  osLanguage: string,
  /**
   * 操作系统主题 light、dark。
   * 
   * @uniPlatform {
   *    "app": {
   *        "android": {
   *            "osVer": "4.4",
   *  		  	 "uniVer": "√",
   * 			 "unixVer": "x"
   *        },
   *        "ios": {
   *            "osVer": "9.0",
   *  		  	 "uniVer": "√",
   * 			 "unixVer": "x"
   *        }
   *    }
   * }
   */
  osTheme: string | null,
  /**
   * 设备像素比
   */
  pixelRatio: number,
  /**
   * 客户端平台
   */
  platform: string,
  /**
   * 屏幕宽度
   */
  screenWidth: number,
  /**
   * 屏幕高度
   */
  screenHeight: number,
  /**
   * 状态栏的高度
   */
  statusBarHeight: number,
  /**
   * 操作系统版本
   */
  system: string,
  /**
   * 在竖屏正方向下的安全区域
   */
  safeArea: SafeArea,
  /**
   * 在竖屏正方向下的安全区域插入位置
   */
  safeAreaInsets: SafeAreaInsets,
  /**
   * 用户标识。小程序端为空
   */
  ua: string,
  /**
   * uni 编译器版本
   */
  uniCompileVersion: string,
  /**
   * uni-app 运行平台。如:`app`、`mp-weixin`、`web`
   */
  uniPlatform: string,
  /**
   * uni 运行时版本
   */
  uniRuntimeVersion: string,
  /**
   * uni 编译器版本号
   */
  uniCompileVersionCode: number,
  /**
   * uni 运行时版本号
   */
  uniRuntimeVersionCode: number,
  /**
   * 引擎版本号。已废弃,仅为了向下兼容保留 
   * @deprecated 已废弃,仅为了向下兼容保留
   */
  version: string,
  /**
   * rom 名称。Android 部分机型获取不到值。iOS 恒为 `ios`
   */
  romName: string,
  /**
   * rom 版本号。Android 部分机型获取不到值。iOS 恒为 `ios 版本号`
   */
  romVersion: string,
  /**
   * 可使用窗口宽度
   */
  windowWidth: number,
  /**
   * 可使用窗口高度
   */
  windowHeight: number,
  /**
   * 可使用窗口的顶部位置
   */
  windowTop: number,
  /**
   * 可使用窗口的底部位置
   */
  windowBottom: number,
  /**
   * oaid
   * 
   * @uniPlatform {
   *    "app": {
   *        "android": {
   *            "osVer": "4.4",
   *  		  	 "uniVer": "√",
   * 			 "unixVer": "√"
   *        },
   *        "ios": {
   *            "osVer": "x",
   *  		  	 "uniVer": "x",
   * 			 "unixVer": "x"
   *        }
   *    }
   * }
   */
  oaid: string | null
  /**
   * Android 系统API库的版本。
   * 
   * @uniPlatform {
   *    "app": {
   *        "android": {
   *            "osVer": "4.4",
   *  		  	 "uniVer": "√",
   * 			 "unixVer": "√"
   *        },
   *        "ios": {
   *            "osVer": "x",
   *  		  	 "uniVer": "x",
   * 			 "unixVer": "x"
   *        }
   *    }
   * }
   */
  osAndroidAPILevel: number | null
};
export type GetSystemInfoSuccessCallback = (result: GetSystemInfoResult) => void;
type GetSystemInfoFail = UniError;
type GetSystemInfoFailCallback = (result: GetSystemInfoFail) => void;
export type GetSystemInfoComplete = any;
export type GetSystemInfoCompleteCallback = (result: GetSystemInfoComplete) => void;
export type GetSystemInfoOptions = {
  /**
   * 接口调用成功的回调函数
   * @defaultValue null
   */
  success?: GetSystemInfoSuccessCallback | null,
  /**
   * 接口调用失败的回调函数
   * @defaultValue null
   */
  fail?: GetSystemInfoFailCallback | null,
  /**
   * 接口调用结束的回调函数(调用成功、失败都会执行)
   * @defaultValue null
   */
  complete?: GetSystemInfoCompleteCallback | null
};

export type GetWindowInfoResult = {
  /**
   * 设备像素比
   */
  pixelRatio: number,
  /**
   * 屏幕宽度
   */
  screenWidth: number,
  /**
   * 屏幕高度
   */
  screenHeight: number,
  /**
   * 可使用窗口宽度
   */
  windowWidth: number,
  /**
   * 可使用窗口高度
   */
  windowHeight: number,
  /**
   * 状态栏的高度
   */
  statusBarHeight: number,
  /**
   * 可使用窗口的顶部位置
   */
  windowTop: number,
  /**
   * 可使用窗口的底部位置
   */
  windowBottom: number,
  /**
   * 在竖屏正方向下的安全区域
   */
  safeArea: SafeArea,
  /**
   * 在竖屏正方向下的安全区域插入位置
   */
  safeAreaInsets: SafeAreaInsets,
  /**
   * 窗口上边缘的 y 值
   */
  screenTop: number
};