1# @ohos.charger (Charger) (System API)
2
3The **charger** module enumerates charging types.
4
5> **NOTE**
6>
7> The initial APIs of this module are supported since API version 10. Newly added APIs will be marked with a superscript to indicate their earliest API version.
8>
9>The APIs provided by this module are system APIs.
10
11
12## Modules to Import
13
14```js
15import {charger} from '@kit.BasicServicesKit';
16```
17
18## ChargeType
19
20Enumerates charging types.
21
22**System API**: This is a system API.
23
24**System capability**: SystemCapability.PowerManager.BatteryManager.Core
25
26| Name      | Value | Description             |
27| -------- | ---- | ----------------- |
28| NONE                 | 0    | Unknown charging type.     |
29| WIRED_NORMAL         | 1    | Wired normal charging.|
30| WIRED_QUICK          | 2    | Wired fast charging.  |
31| WIRED_SUPER_QUICK    | 3    | Wired super fast charging.|
32| WIRELESS_NORMAL      | 4    | Wireless normal charging.|
33| WIRELESS_QUICK       | 5    | Wireless fast charging.|
34| WIRELESS_SUPER_QUICK | 6    | Wireless super fast charging.|
35