Skip to main content

ICommandHistory

Interfaces

ICommandHistory

History of executed commands.

Methods

addCommand()
addCommand(command): void;

Adds the executed command to history.

Parameters
ParameterTypeDescription
commandICommandexecuted command.
Returns

void

clearHistory()
clearHistory(): void;

Clears the history of executed commands.

Returns

void

getCommandsCount()
getCommandsCount(): number;

Returns the number of commands in history.

Returns

number

getLastCommand()
getLastCommand(index?): ICommand;

Returns the last command executed from history by index.

Parameters
ParameterTypeDescription
index?numbercommand index ('0' used for the most recent command).
Returns

ICommand

Was this page helpful?