1 | export declare type DeviceType = 'Handset' | 'Tablet' | 'Tv' | 'Desktop' | 'GamingConsole' | 'unknown';
|
2 | export declare type BatteryState = 'unknown' | 'unplugged' | 'charging' | 'full';
|
3 | export interface PowerState {
|
4 | batteryLevel: number;
|
5 | batteryState: BatteryState;
|
6 | lowPowerMode: boolean;
|
7 | [key: string]: any;
|
8 | }
|
9 | export interface LocationProviderInfo {
|
10 | [key: string]: boolean;
|
11 | }
|
12 | export interface AsyncHookResult<T> {
|
13 | loading: boolean;
|
14 | result: T;
|
15 | }
|
16 | export declare type AvailableCapacityType = 'total' | 'important' | 'opportunistic';
|