mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
docs(): update docs
This commit is contained in:
@@ -1,5 +1,15 @@
|
||||
import { Cordova, Plugin } from './plugin';
|
||||
|
||||
export interface SafariViewControllerOptions {
|
||||
url?: string;
|
||||
hidden?: boolean;
|
||||
toolbarColor?: string;
|
||||
animated?: boolean;
|
||||
showDefaultShareMenuItem?: boolean;
|
||||
enterReaderModeIfAvailable?: boolean;
|
||||
tintColor?: string;
|
||||
transition?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* @name SafariViewController
|
||||
@@ -37,6 +47,8 @@ import { Cordova, Plugin } from './plugin';
|
||||
* }
|
||||
* );
|
||||
* ```
|
||||
* @interfaces
|
||||
* SafariViewControllerOptions
|
||||
*/
|
||||
@Plugin({
|
||||
pluginName: 'SafariViewController',
|
||||
@@ -91,14 +103,3 @@ export class SafariViewController {
|
||||
static mayLaunchUrl(url: string): Promise<any> { return; }
|
||||
|
||||
}
|
||||
|
||||
export interface SafariViewControllerOptions {
|
||||
url?: string;
|
||||
hidden?: boolean;
|
||||
toolbarColor?: string;
|
||||
animated?: boolean;
|
||||
showDefaultShareMenuItem?: boolean;
|
||||
enterReaderModeIfAvailable?: boolean;
|
||||
tintColor?: string;
|
||||
transition?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user