f55b3add80
Co-authored-by: Thomas Way <thomas@6f.io>
13 lines
296 B
TypeScript
13 lines
296 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;
|