/**
 * Copyright IBM Corp. 2024, 2025
 */

export interface TreeEntryResponse {
    path: string;
    mode: string;
    type: 'blob' | 'tree';
    sha: string;
    size?: number; // Only applicable if type is 'blob'
    url: string;
}