igniteui-react-core
Version:
Ignite UI React Core.
38 lines (37 loc) • 1.23 kB
TypeScript
import { ToolActionDescription } from "./ToolActionDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class ToolActionCheckboxDescription extends ToolActionDescription {
static $t: Type;
protected get_type(): string;
constructor();
private dv;
get isChecked(): boolean;
set isChecked(a: boolean);
private d3;
get uncheckedBackgroundColor(): string;
set uncheckedBackgroundColor(a: string);
private dz;
get actualUncheckedBackgroundColor(): string;
set actualUncheckedBackgroundColor(a: string);
private d1;
get checkedBackgroundColor(): string;
set checkedBackgroundColor(a: string);
private dx;
get actualCheckedBackgroundColor(): string;
set actualCheckedBackgroundColor(a: string);
private d4;
get uncheckedBorderColor(): string;
set uncheckedBorderColor(a: string);
private d0;
get actualUncheckedBorderColor(): string;
set actualUncheckedBorderColor(a: string);
private d2;
get checkedBorderColor(): string;
set checkedBorderColor(a: string);
private dy;
get actualCheckedBorderColor(): string;
set actualCheckedBorderColor(a: string);
}