UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

16 lines 336 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ 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