Type Alias BranchGraphCommandBranch

BranchGraphCommandBranch: {
    branch: string | {
        from: string;
        to: string;
    };
    command: "branch";
}

Branches from the branch specified by branch.from to the branch specified by branch.to.