igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
34 lines (33 loc) • 939 B
TypeScript
import { Description } from "./Description";
import { ToolActionDescription } from "./ToolActionDescription";
import { Type } from "./type";
/**
* @hidden
*/
export declare class ToolActionEventDetailDescription extends Description {
static $t: Type;
protected get_type(): string;
get type(): string;
constructor();
private f;
get action(): ToolActionDescription;
set action(a: ToolActionDescription);
private p;
get actionType(): string;
set actionType(a: string);
private i;
get isModified(): boolean;
set isModified(a: boolean);
private h;
get boolValue(): boolean;
set boolValue(a: boolean);
private n;
get numberValue(): number;
set numberValue(a: number);
private l;
get dateTimeValue(): Date;
set dateTimeValue(a: Date);
private q;
get untypedValueRef(): string;
set untypedValueRef(a: string);
}