mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00:00
8 lines
295 B
TypeScript
8 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[]>;
|
|
}
|