/**
 * Copyright IBM Corp. 2024, 2025
 */
export interface TreeEntry {
  isModified: boolean;
  path: string;
  type: "blob" | "tree";
  sha: string | null;
  url: string | null;
}
