From 2718bcccccacc265f4ae3b5716248b99838339a5 Mon Sep 17 00:00:00 2001 From: Michael B Date: Wed, 30 Oct 2019 16:55:12 +0100 Subject: [PATCH] Fix wrong import path in documentation (#3209) --- 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 c6b540bce..f4e073fda 100644 --- a/src/@ionic-native/plugins/background-geolocation/index.ts +++ b/src/@ionic-native/plugins/background-geolocation/index.ts @@ -499,7 +499,7 @@ export declare enum BackgroundGeolocationIOSActivity { * 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, BackgroundGeolocationEvents, BackgroundGeolocationResponse } from '@ionic-native/background-geolocation'; + * import { BackgroundGeolocation, BackgroundGeolocationConfig, BackgroundGeolocationEvents, BackgroundGeolocationResponse } from '@ionic-native/background-geolocation/ngx'; * * constructor(private backgroundGeolocation: BackgroundGeolocation) { } *