/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
export interface TreeEntry {
  isModified: boolean;
  path: string;
  type: "blob" | "tree";
  sha: string | null;
  url: string | null;
}
