@apistudio/apim-cli
Version:
CLI for API Management Products
17 lines (16 loc) • 379 B
text/typescript
/**
* 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;
};