import type { Alignment } from "./Alignment.js"; import type { ContextMenuItem } from "./ContextMenuItem.js"; import type { TsUnknown } from "./TsUnknown.js"; export type ContextMenu = { identifier: string; /** * Optional metadata that will be sent back in the callback payload when an item is clicked. */ meta?: TsUnknown | null; /** * Items of the context menu */ items: Array; /** * Alignment of the context menu on the X axis relative to the trigger point. */ alignX?: Alignment | null; /** * Alignment of the context menu on the Y axis relative to the trigger point. */ alignY?: Alignment | null; }; //# sourceMappingURL=ContextMenu.d.ts.map