mirror of
https://github.com/immich-app/immich.git
synced 2026-01-14 05:56:38 -08: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[]>;
|
|
}
|