docs(): Update inappbrowser.ts (#376)

This commit is contained in:
Nazır Doğan 2016-07-31 21:24:15 +03:00 committed by Ibrahim Hadeed
parent aa51c03c5c
commit 5506e8a2e2

View File

@ -71,6 +71,9 @@ export interface InAppBrowserRef {
})
export class InAppBrowser {
/**
* Opens a URL in a new InAppBrowser instance, the current browser instance, or the system browser.
* @param url The URL to load.
@ -79,6 +82,21 @@ export class InAppBrowser {
* The options string must not contain any blank space, and each feature's
* name/value pairs must be separated by a comma. Feature names are case insensitive.
*/
/**
* @name InAppBrowser
* @description
* @usage
* ```typescript
* import { InAppBrowser } from 'ionic-native';
*
*
*
* InAppBrowser.open(url, target, options);
*
*
* ```
*/
@Cordova({
sync: true
})