mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* fix(web): use id instead of assetId * chore(web): improve type checking * fix test jobs * improve type checking and resolve errors
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import type { AlbumResponseDto } from '@api';
|
|
|
|
export type OnShowContextMenu = {
|
|
showalbumcontextmenu: OnShowContextMenuDetail;
|
|
};
|
|
|
|
export type OnClick = {
|
|
click: OnClickDetail;
|
|
};
|
|
|
|
export type OnShowContextMenuDetail = { x: number; y: number };
|
|
export type OnClickDetail = AlbumResponseDto;
|