UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

16 lines 308 B
/** * Copyright IBM Corp. 2024, 2025 */ interface FileAddition { path: string; contents: string; } interface FileDeletion { path: string; } export interface FileChanges { additions: FileAddition[]; deletions: FileDeletion[]; } export {}; //# sourceMappingURL=file-changes.model.d.ts.map