mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-01-19 16:52:53 +08:00
feat(safari-view-controller): add missing options (#1490)
* update(SafariViewController): added missing options fix #1489 * alphabetical * fix linter * Update index.ts * Update index.ts
This commit is contained in:
parent
21c9cd2e57
commit
a5b2e981b3
@ -2,14 +2,16 @@ import { Injectable } from '@angular/core';
|
|||||||
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
|
import { Cordova, Plugin, IonicNativePlugin } from '@ionic-native/core';
|
||||||
|
|
||||||
export interface SafariViewControllerOptions {
|
export interface SafariViewControllerOptions {
|
||||||
url?: string;
|
|
||||||
hidden?: boolean;
|
|
||||||
toolbarColor?: string;
|
|
||||||
animated?: boolean;
|
animated?: boolean;
|
||||||
showDefaultShareMenuItem?: boolean;
|
barColor?: string;
|
||||||
|
controlTintColor?: string;
|
||||||
enterReaderModeIfAvailable?: boolean;
|
enterReaderModeIfAvailable?: boolean;
|
||||||
|
hidden?: boolean;
|
||||||
|
showDefaultShareMenuItem?: boolean;
|
||||||
tintColor?: string;
|
tintColor?: string;
|
||||||
|
toolbarColor?: string;
|
||||||
transition?: string;
|
transition?: string;
|
||||||
|
url?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user