UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

16 lines (14 loc) 235 B
/** * Copyright IBM Corp. 2024, 2025 */ interface FileAddition { path: string; contents: string; } interface FileDeletion { path: string; } export interface FileChanges { additions: FileAddition[]; deletions: FileDeletion[]; }