mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-07 01:39:07 +00:00
Phonegap: Added StatusBar plugin interface
This commit is contained in:
15
phonegap/phonegap.d.ts
vendored
15
phonegap/phonegap.d.ts
vendored
@@ -575,6 +575,21 @@ interface LocalStorage {
|
||||
}
|
||||
*/
|
||||
|
||||
interface StatusBar {
|
||||
isVisible: boolean;
|
||||
|
||||
overlaysWebView(doOverlay: boolean): void;
|
||||
styleDefault(): void;
|
||||
styleLightContent(): void;
|
||||
styleBlackTranslucent(): void;
|
||||
styleBlackOpaque(): void;
|
||||
backgroundColorByName(colorname: string): void;
|
||||
backgroundColorByHexString(hexString: string): void;
|
||||
hide(): void;
|
||||
show(): void;
|
||||
}
|
||||
declare var StatusBar: StatusBar;
|
||||
|
||||
interface /*PhoneGapNavigator extends*/ Navigator {
|
||||
accelerometer: Accelerometer;
|
||||
camera: Camera;
|
||||
|
||||
Reference in New Issue
Block a user