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