mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 01:11:46 +03:00
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
|
|
import type { ResetOptions } from '$lib/utils/dipatch';
|
||
|
|
import type { SystemConfigDto } from '@api';
|
||
|
|
|
||
|
|
export type SettingsEventType = {
|
||
|
|
reset: ResetOptions & { configKeys: Array<keyof SystemConfigDto> };
|
||
|
|
save: Partial<SystemConfigDto>;
|
||
|
|
};
|