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:
Daniel Sogl 2017-05-09 23:32:24 +02:00 committed by Ibby Hadeed
parent 21c9cd2e57
commit a5b2e981b3

View File

@ -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;
} }
/** /**