The input for the command endpoint.

interface CommandInput {
    command: string;
    data?: any;
}

Properties

Properties

command: string

The command to execute.

data?: any

The data to send to the command (if any).