From 2f706deb26be2770d8d4cf3f13e152a9cd3c156e Mon Sep 17 00:00:00 2001 From: Ramon Henrique Ornelas Date: Thu, 1 Sep 2016 02:32:14 -0300 Subject: [PATCH] style(): fix Angular style TEMPLATE (#517) * style(TEMPLATE): fix angular style * docs(TEMPLATE): fix angular style docs template --- TEMPLATE | 6 +++--- TEMPLATE-MIN | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/TEMPLATE b/TEMPLATE index 4b8667d0b..b80894b4b 100644 --- a/TEMPLATE +++ b/TEMPLATE @@ -10,8 +10,8 @@ * - Remove this note * */ -import {Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty} from './plugin'; -import {Observable} from 'rxjs/Observable'; +import { Plugin, Cordova, CordovaProperty, CordovaInstance, InstanceProperty } from './plugin'; +import { Observable } from 'rxjs/Observable'; /** * @name PluginName @@ -20,7 +20,7 @@ import {Observable} from 'rxjs/Observable'; * * @usage * ``` - * import {PluginName} from 'ionic-native'; + * import { PluginName } from 'ionic-native'; * * PluginName.functionName('Hello', 123) * .then((something: any) => doSomething(something)) diff --git a/TEMPLATE-MIN b/TEMPLATE-MIN index 052eac55b..733c35cd2 100644 --- a/TEMPLATE-MIN +++ b/TEMPLATE-MIN @@ -1,11 +1,11 @@ -import {Plugin} from './plugin'; +import { Plugin } from './plugin'; /** * @name PluginName * @description * * @usage * ``` - * import {PluginName} from 'ionic-native'; + * import { PluginName } from 'ionic-native'; * * * ```