import { Commit } from './commit'; export interface File { file_name?: string; file_path?: string; size?: number; encoding?: string; content_sha256?: string; ref?: string; blob_id?: string; last_commit_id?: string; content?: string; } export interface FileBlame { commit?: Commit; lines?: string[]; } export interface CreateUpdateFile { file_path?: string; branch?: string; } //# sourceMappingURL=file.d.ts.map