import ICachedResource from "../cache/cachedResource.js"; export default interface IRepository { getAppVariantIdHierarchy(appId: string): Promise; fetch(resource: ICachedResource): Promise>; downloadAnnotationFile(uri: string): Promise>; }