import { Observable } from "rxjs"; import { IEntity } from "../models/entity"; import { Repo, RepoEntity } from "./types"; /** * Update supplied entity in supplied repo. * * @param repo - The repository to update entity in. * @param entity - The entity to update. * @returns Observable of updated entity. */ export declare function update, TEntity extends IEntity = RepoEntity>(repo: TRepo, entity: Partial & Pick): Observable; //# sourceMappingURL=update.d.ts.map