/**
 * Copyright IBM Corp. 2024, 2025
 */
export interface VCSFileInfo {
  isModified: boolean;
  path: string;
  fileUrl: string;
  repoNameWithOwner: string;
};

