mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-08 11:35:54 +00:00
7 lines
250 B
TypeScript
7 lines
250 B
TypeScript
import type { ResetOptions } from '$lib/utils/dipatch';
|
|
import type { SystemConfigDto } from '@immich/sdk';
|
|
|
|
export type SettingsEventType = {
|
|
reset: ResetOptions & { configKeys: Array<keyof SystemConfigDto> };
|
|
save: Partial<SystemConfigDto>;
|
|
};
|