mirror of
https://github.com/immich-app/immich.git
synced 2025-11-17 00:32:37 +09:00
* refactor admin settings * use slots to render buttons in simplified template settings * remove more boilerplate by looping over components * fix: onboarding * fix: reset/reset to default * remove lodash since it is unecessary * chore: standardize padding and margins --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
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>;
|
|
};
|