mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { SmartInfoEntity } from '@app/infra/entities';
|
|
|
|
export const ISmartInfoRepository = 'ISmartInfoRepository';
|
|
|
|
export interface ISmartInfoRepository {
|
|
upsert(info: Partial<SmartInfoEntity>): Promise<void>;
|
|
}
|