UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

14 lines (13 loc) 262 B
/** * Copyright IBM Corp. 2024, 2025 */ export interface RepositoryNode { nameWithOwner: string; description: string | null; url: string; branchCount: number; defaultBranchRef: DefaultBranchRef; } interface DefaultBranchRef { name: string; }