UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

18 lines 398 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ interface TreeEntryResponse { path: string; mode: string; type: 'blob' | 'tree'; sha: string; size?: number; url: string; } export interface RepositoryTreeResponse { sha: string; url: string; tree: TreeEntryResponse[]; } export {}; //# sourceMappingURL=repository-tree-response.model.d.ts.map