fix(themeablebrowser): add missed options (#680)

This commit is contained in:
Xueron Nee 2016-10-12 07:33:35 +08:00 committed by Ibrahim Hadeed
parent bff4862979
commit e28e5b0f5f

View File

@ -15,12 +15,19 @@ export interface ThemeableBrowserButton {
}
export interface ThemeableBrowserOptions {
statusbar?: { color: string; };
statusbar?: {
color: string;
};
toolbar?: {
height?: number;
color?: string;
image?: string;
};
title?: {
color?: string;
staticText?: string;
showPageTitle?: boolean;
};
title?: { color: string; };
backButton?: ThemeableBrowserButton;
forwardButton?: ThemeableBrowserButton;
closeButton?: ThemeableBrowserButton;
@ -37,6 +44,7 @@ export interface ThemeableBrowserOptions {
}[];
};
backButtonCanClose?: boolean;
disableAnimation?: boolean;
// inAppBrowser options
location?: string;