awesome-cordova-plugins/dist/plugins/statusbar.d.ts

12 lines
412 B
TypeScript
Raw Normal View History

2015-11-29 08:26:55 +08:00
export declare class StatusBar {
2015-11-30 09:54:45 +08:00
static overlaysWebView(doOverlay: boolean): void;
static styleDefault(): void;
static styleLightContent(): void;
static styleBlackTranslucent(): void;
static styleBlackOpaque(): void;
static backgroundColorByName(colorName: string): void;
static backgroundColorByHexString(hexString: string): void;
static hide(): void;
static show(): void;
2015-11-29 08:26:55 +08:00
}