UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

17 lines 446 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { VCSAssets } from "./vcs-assets.model.js"; export type VCSProject = { isLoading: boolean; name: string; description: string; lastUpdated: number; tags: string[]; repoNameWithOwner: string; rootDirectoryAlias: string; assets: VCSAssets; isPinned: boolean; isVCSProject: boolean; }; //# sourceMappingURL=vcs-project.model.d.ts.map