UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

15 lines (13 loc) 259 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ export type ProjectFileMetaData = { projects: Projects; }; export type Projects = { [key: string]: Project; } export type Project = { description: string; tags: string[]; }