/**
 * Copyright IBM Corp. 2024, 2025
 */
export interface ChangedItem {
  path: string;
  content: number[] | File | Blob | any;
  isPathDeleted: boolean;
  isPathAdded: boolean;
  isFileStaged: boolean;
  isDirectory: boolean;
  updatedPath: string | null;
}
