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

export interface RepositoryNode {
    nameWithOwner: string;
    description: string | null;
    url: string;
    branchCount: number;
	defaultBranchRef: DefaultBranchRef;
}
interface DefaultBranchRef {
	name: string;
}