docs(): add beta tags

This commit is contained in:
Ibby 2017-01-20 16:07:05 -05:00
parent 229f5509e9
commit 47b6164e99
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import { Plugin, Cordova } from './plugin'; import { Plugin, Cordova } from './plugin';
/** /**
* @beta
* @name NativeGeocoder * @name NativeGeocoder
* @description * @description
* Cordova plugin for native forward and reverse geocoding * Cordova plugin for native forward and reverse geocoding

View File

@ -2,9 +2,10 @@ import { Cordova, Plugin } from './plugin';
/** /**
* @beta
* @name NavigationBar * @name NavigationBar
* @description * @description
* The NavigationBar plugin can you to hide and auto hide the android navigation bar. * The NavigationBar plugin can you to hide and auto hide the android navigation bar.
* *
* @usage * @usage
* ```typescript * ```typescript
@ -45,5 +46,5 @@ export class NavigationBar {
errorName: 'failure' errorName: 'failure'
}) })
static hideNavigationBar(): Promise<any> { return; } static hideNavigationBar(): Promise<any> { return; }
} }