import { Constructor, Hash } from '@es-git/core'; import { IObjectRepo, TreeObject, BlobObject } from '@es-git/object-mixin'; export interface IPathToObjectRepo { loadObjectByPath(rootTree: Hash, path: string | string[]): Promise; loadBlobByPath(rootTree: Hash, path: string | string[]): Promise; loadTextByPath(rootTree: Hash, path: string | string[]): Promise; } export default function mixin>(repo: T): Constructor & T; //# sourceMappingURL=index.d.ts.map