Type Alias TSubMenuParam

TSubMenuParam: {
    menuTitle?: string;
    position:
        | "top"
        | "left"
        | "right"
        | "right-top"
        | "bottom"
        | "bottom-left"
        | "bottom-right";
    subMenu: HTMLElement;
    trigger: HTMLElement;
}