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()
|
2015-11-30 09:54:45 +08:00
|
|
|
static overlaysWebView(doOverlay:boolean){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static styleDefault(){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static styleLightContent(){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static styleBlackTranslucent(){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static styleBlackOpaque(){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static backgroundColorByName(colorName:string){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static backgroundColorByHexString(hexString:string){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static hide(){};
|
2015-11-29 08:26:55 +08:00
|
|
|
@Cordova()
|
2015-11-30 09:54:45 +08:00
|
|
|
static show(){};
|
2015-11-29 06:17:04 +08:00
|
|
|
}
|