From 35d317f7f31bddadf620d7deb8ab0e5fb1c1315f Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 23 Aug 2017 19:39:29 -0400 Subject: [PATCH] docs(): add missing import (#1853) BackgroundGeolocationResponse was not declared in classes to import from @ionic-native/background-geolocation --- src/@ionic-native/plugins/background-geolocation/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/@ionic-native/plugins/background-geolocation/index.ts b/src/@ionic-native/plugins/background-geolocation/index.ts index 4532c653c..99461d26e 100644 --- a/src/@ionic-native/plugins/background-geolocation/index.ts +++ b/src/@ionic-native/plugins/background-geolocation/index.ts @@ -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) { } *