Source code for ooodev.adapter.awt.menu_bar_partial

from __future__ import annotations
from typing import Any, TYPE_CHECKING

from com.sun.star.awt import XMenuBar
from ooodev.adapter.awt.menu_partial import MenuPartial


if TYPE_CHECKING:
    from ooodev.utils.type_var import UnoInterface
else:
    UnoInterface = Any