mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
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;
|