interface CommandHistory {
    command: string;
    error?: string;
    parameters?: any;
    result: "error" | "success";
    timestamp: Date;
}

Properties

command: string
error?: string
parameters?: any
result: "error" | "success"
timestamp: Date