docs(): add missing import (#1853)

BackgroundGeolocationResponse was not declared in classes to import from @ionic-native/background-geolocation
This commit is contained in:
Chris 2017-08-23 19:39:29 -04:00 committed by Ibby Hadeed
parent 5505e5f064
commit 35d317f7f3

View File

@ -264,7 +264,7 @@ export interface BackgroundGeolocationConfig {
* BackgroundGeolocation must be called within app.ts and or before Geolocation. Otherwise the platform will not ask you for background tracking permission.
*
* ```typescript
* import { BackgroundGeolocation, BackgroundGeolocationConfig } from '@ionic-native/background-geolocation';
* import { BackgroundGeolocation, BackgroundGeolocationConfig, BackgroundGeolocationResponse } from '@ionic-native/background-geolocation';
*
* constructor(private backgroundGeolocation: BackgroundGeolocation) { }
*