command used for internal operation call

interface iCommand {
    a?: string;
    action?: CommandAction;
    asString: string;
    attributes: iAttributes;
    attrs?: iAttribute[];
    command?: string;
    env?: commandEnvironment;
    jsLibrary?: string;
    attrVal(attrName, group?): iAttrVal;
}

Hierarchy (view full)

Properties

a?: string
action?: CommandAction
asString: string

where to dispatch command to operate; in shorter version it can contain the whole command

attributes: iAttributes
attrs?: iAttribute[]
command?: string
jsLibrary?: string

name of the js library where is the command Used only for js commands

Methods

  • Parameters

    Returns iAttrVal