mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
8 lines
250 B
TypeScript
8 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>;
|
|
};
|