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
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
import { SystemConfigEntity } from '@app/infra/entities';
|
|
|
|
export const ISystemConfigRepository = 'ISystemConfigRepository';
|
|
|
|
export interface ISystemConfigRepository {
|
|
load(): Promise<SystemConfigEntity[]>;
|
|
saveAll(items: SystemConfigEntity[]): Promise<SystemConfigEntity[]>;
|
|
deleteKeys(keys: string[]): Promise<void>;
|
|
}
|