mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
10 lines
331 B
TypeScript
10 lines
331 B
TypeScript
|
import { SystemConfigEntity } from '@app/infra/db/entities';
|
||
|
|
||
|
export const ISystemConfigRepository = 'ISystemConfigRepository';
|
||
|
|
||
|
export interface ISystemConfigRepository {
|
||
|
load(): Promise<SystemConfigEntity[]>;
|
||
|
saveAll(items: SystemConfigEntity[]): Promise<SystemConfigEntity[]>;
|
||
|
deleteKeys(keys: string[]): Promise<void>;
|
||
|
}
|