fix(server): on_asset_update event sends varying data types (#7179)

This commit is contained in:
Michel Heusschen
2024-02-18 23:50:32 +01:00
committed by GitHub
parent 072f61927c
commit 4b46bb49d7
6 changed files with 37 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ export interface Events {
on_asset_update: (asset: AssetResponseDto) => void;
on_asset_hidden: (assetId: string) => void;
on_asset_restore: (assetIds: string[]) => void;
on_asset_stack_update: (assetIds: string[]) => void;
on_person_thumbnail: (personId: string) => void;
on_server_version: (serverVersion: ServerVersionResponseDto) => void;
on_config_update: () => void;