/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
export interface ChangedItem {
  path: string;
  content: number[];
  isPathDeleted: boolean;
  isPathAdded: boolean;
  isFileStaged: boolean;
  isDirectory: boolean;
  updatedPath: string | null;
}
