import type { Alignment } from "./Alignment.js"; import type { ContextMenuItem } from "./ContextMenuItem.js"; export type ContextMenu = { identifier: string; 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