Interface Command

interface Command {
    action: string;
    args?: {
        [k: string]: any;
    };
    objectId: undefined | number;
    path: string;
    uuid: string;
}

Properties

action: string
args?: {
    [k: string]: any;
}

Type declaration

  • [k: string]: any
objectId: undefined | number
path: string
uuid: string