2015-11-29 08:26:55 +08:00
|
|
|
import {Plugin, Cordova} from './plugin';
|
2015-11-29 06:17:04 +08:00
|
|
|
|
2015-11-29 08:26:55 +08:00
|
|
|
@Plugin({
|
2015-11-29 06:17:04 +08:00
|
|
|
name: 'StatusBar',
|
|
|
|
plugin: 'cordova-plugin-statusbar',
|
2015-11-29 08:26:55 +08:00
|
|
|
pluginRef: 'StatusBar'
|
|
|
|
})
|
|
|
|
export class StatusBar {
|
|
|
|
@Cordova()
|
|
|
|
static overlaysWebView;
|
|
|
|
@Cordova()
|
|
|
|
static styleDefault;
|
|
|
|
@Cordova()
|
|
|
|
static styleLightContent;
|
|
|
|
@Cordova()
|
|
|
|
static styleBlackTranslucent;
|
|
|
|
@Cordova()
|
|
|
|
static styleBlackOpaque;
|
|
|
|
@Cordova()
|
|
|
|
static backgroundColorByName;
|
|
|
|
@Cordova()
|
|
|
|
static backgroundColorByHexString;
|
|
|
|
@Cordova()
|
|
|
|
static hide;
|
|
|
|
@Cordova()
|
|
|
|
static show;
|
2015-11-29 06:17:04 +08:00
|
|
|
}
|