refactor(scripts): use rxjs 6 syntax for plugin templates

This commit is contained in:
Daniel 2018-04-09 21:59:34 +02:00
parent 3aea3900bc
commit c63895db19
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
*/ */
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty, IonicNativePlugin } from '@ionic-native/core'; import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty, IonicNativePlugin } from '@ionic-native/core';
import { Observable } from 'rxjs/Observable'; import { Observable } from 'rxjs';
/** /**
* @name {{ Plugin_Name }} * @name {{ Plugin_Name }}

View File

@ -12,7 +12,7 @@
*/ */
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty, IonicNativePlugin } from '@ionic-native/core'; import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty, IonicNativePlugin } from '@ionic-native/core';
import { Observable } from 'rxjs/Observable'; import { Observable } from 'rxjs';
/** /**
* @name {{ Plugin_Name }} * @name {{ Plugin_Name }}