UNPKG

470 BTypeScriptView Raw
1/**
2 * @name HeaderColor
3 * @description
4 * Cordova plugin to change color of header in multitask view
5 *
6 * @usage
7 * ```typescript
8 * import { HeaderColor } from 'ionic-native';
9 *
10 * HeaderColor.tint("#becb29");
11 * ```
12 */
13export declare class HeaderColor {
14 /**
15 * Set a color to the task header
16 * @param color {string} The hex value of the color
17 * @returns {Promise<any>}
18 */
19 static tint(color: string): Promise<any>;
20}