mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
|
|
import { AssetEntity } from 'src/entities/asset.entity';
|
||
|
|
|
||
|
|
export const IViewRepository = 'IViewRepository';
|
||
|
|
|
||
|
|
export interface IViewRepository {
|
||
|
|
getAssetsByOriginalPath(userId: string, partialPath: string): Promise<AssetEntity[]>;
|
||
|
|
getUniqueOriginalPaths(userId: string): Promise<string[]>;
|
||
|
|
}
|