style(): fix Angular style TEMPLATE (#517)

* style(TEMPLATE): fix angular style

* docs(TEMPLATE): fix angular style docs template
This commit is contained in:
Ramon Henrique Ornelas 2016-09-01 02:32:14 -03:00 committed by Ibrahim Hadeed
parent 54460e2362
commit 2f706deb26
2 changed files with 5 additions and 5 deletions

View File

@ -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))

View File

@ -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';
*
*
* ```