From 302fa48e7c62000e4c1c57331b3509b1fd17f6c7 Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Tue, 9 May 2017 23:39:08 +0200 Subject: [PATCH] chore(): fix ionic native import (#1471) --- scripts/templates/wrap.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/templates/wrap.tmpl b/scripts/templates/wrap.tmpl index 596d3442f..f6e872d6e 100644 --- a/scripts/templates/wrap.tmpl +++ b/scripts/templates/wrap.tmpl @@ -10,8 +10,8 @@ * - Remove this note * */ -import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty, IonicNativePlugin } from '@ionic-native/core'; import { Injectable } from '@angular/core'; +import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty, IonicNativePlugin } from '@ionic-native/core'; import { Observable } from 'rxjs/Observable'; /** @@ -21,7 +21,7 @@ import { Observable } from 'rxjs/Observable'; * * @usage * ``` - * import { $PluginName } from 'ionic-native'; + * import { $PluginName } from '@ionic-native/'; * * * constructor(private $pluginName: $PluginName) { }