import { AssetEntity, AssetType } from '@app/infra/db/entities'; export const IAssetRepository = 'IAssetRepository'; export interface IAssetRepository { deleteAll(ownerId: string): Promise; getAll(): Promise; save(asset: Partial): Promise; findLivePhotoMatch(livePhotoCID: string, otherAssetId: string, type: AssetType): Promise; }