igniteui-react-core
Version:
Ignite UI React Core.
20 lines (19 loc) • 540 B
TypeScript
import { ToolActionInfo } from "./ToolActionInfo";
import { ToolActionType } from "./ToolActionType";
import { Type } from "./type";
/**
* @hidden
*/
export declare class ToolActionRadioInfo extends ToolActionInfo {
static $t: Type;
protected get_d(): ToolActionType;
private _isChecked;
get isChecked(): boolean;
set isChecked(a: boolean);
private _channel;
get channel(): string;
set channel(a: string);
private _shorthandTitle;
get shorthandTitle(): string;
set shorthandTitle(a: string);
}