Interface RedisCommandResult

interface RedisCommandResult {
    cmd: string;
    error: string;
    value: any;
}

Properties

Properties

cmd: string
error: string
value: any