UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

16 lines 335 B
/** * Copyright IBM Corp. 2024, 2025 */ interface TreeEntryResponse { path: string; mode: string; type: 'blob' | 'tree'; sha: string; size?: number; // Only applicable if type is 'blob' url: string; } export interface RepositoryTreeResponse { sha: string; url: string; tree: TreeEntryResponse[]; }