index.d.ts 879 字节
Newer Older
Q
qiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12
declare namespace UniNamespace {
  interface GetBatteryInfoSuccessCallbackResult {
    /**
     * 是否正在充电中
     */
    isCharging: boolean;
    /**
     * 设备电量,范围 1 - 100
     */
    level: number;
    errMsg: string;
  }
DCloud-yyl's avatar
DCloud-yyl 已提交
13

Q
qiang 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27
  interface GetBatteryInfoOption {
    /**
     * 接口调用结束的回调函数(调用成功、失败都会执行)
     */
    complete?: Function
    /**
     * 接口调用失败的回调函数
     */
    fail?: Function
    /**
     * 接口调用成功的回调函数
     */
    success?: (result: GetBatteryInfoSuccessCallbackResult) => void
  }
DCloud-yyl's avatar
DCloud-yyl 已提交
28 29
}

Q
qiang 已提交
30
declare interface Uni {
DCloud-yyl's avatar
DCloud-yyl 已提交
31 32 33 34 35
  /**
   * 获取设备电量
   *
   * 文档: [https://uniapp.dcloud.net.cn/api/system/batteryInfo.html](https://uniapp.dcloud.net.cn/api/system/batteryInfo.html)
   */
Q
qiang 已提交
36
  getBatteryInfo(option?: UniNamespace.GetBatteryInfoOption): void;
DCloud-yyl's avatar
DCloud-yyl 已提交
37
}