UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

14 lines (13 loc) 290 B
/** * 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; }