igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
14 lines (13 loc) • 368 B
TypeScript
import { ToolActionInfo } from "./ToolActionInfo";
import { ToolActionType } from "./ToolActionType";
import { Type } from "./type";
/**
* @hidden
*/
export declare class ToolActionTextInputInfo extends ToolActionInfo {
static $t: Type;
protected get_d(): ToolActionType;
private _value;
get value(): string;
set value(a: string);
}