refactoring

This commit is contained in:
Max Lynch
2015-11-29 19:54:45 -06:00
parent 9d54bfcd0b
commit dfef6dcfe8
42 changed files with 719 additions and 185 deletions
+9 -9
View File
@@ -7,21 +7,21 @@ import {Plugin, Cordova} from './plugin';
})
export class StatusBar {
@Cordova()
static overlaysWebView;
static overlaysWebView(doOverlay:boolean){};
@Cordova()
static styleDefault;
static styleDefault(){};
@Cordova()
static styleLightContent;
static styleLightContent(){};
@Cordova()
static styleBlackTranslucent;
static styleBlackTranslucent(){};
@Cordova()
static styleBlackOpaque;
static styleBlackOpaque(){};
@Cordova()
static backgroundColorByName;
static backgroundColorByName(colorName:string){};
@Cordova()
static backgroundColorByHexString;
static backgroundColorByHexString(hexString:string){};
@Cordova()
static hide;
static hide(){};
@Cordova()
static show;
static show(){};
}