UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

16 lines (15 loc) 430 B
import { Base, Type } from "./type"; import { ToolCommandArgument } from "./ToolCommandArgument"; /** * @hidden */ export declare class ToolCommand extends Base { static $t: Type; constructor(); private _commandId; get commandId(): string; set commandId(a: string); private _argumentsList; get argumentsList(): ToolCommandArgument[]; set argumentsList(a: ToolCommandArgument[]); }