/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */

import { BranchNode } from "./branch-node.model.js";

export interface BranchResponse {
  repository: {
    refs: {
      pageInfo: {
        endCursor: string | null;
        hasNextPage: boolean;
      };
      nodes: BranchNode[];
    };
  };
}
