docs(): battery-status example fix (#1387)

Closes #1383
This commit is contained in:
Ibby Hadeed
2017-04-18 17:36:15 -04:00
committed by GitHub

View File

@@ -32,7 +32,7 @@ export interface BatteryStatusResponse {
*
* // watch change in battery status
* let subscription = this.batteryStatus.onChange().subscribe(
* (status: StatusObject) => {
* (status: BatteryStatusResponse) => {
* console.log(status.level, status.isPlugged);
* }
* );