/**
 * Copyright IBM Corp. 2024, 2025
 */
export interface BranchNode {
    name: string;
    target: {
        oid: string;
        commitUrl: string;
        committedDate?: string;
    };
}
//# sourceMappingURL=branch-node.model.d.ts.map