UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

16 lines (15 loc) 507 B
import React from "react"; /** @internal */ export interface IMobileMenuBarProps { expanded: boolean; onChangeOrientation?: () => void; children?: React.ReactNode; currentTarget?: HTMLElement; handleOutsideClick?: boolean; onHideMenu?: () => void; renderBackdrop?: boolean; } /** * @internal Представляет собой панель с меню для мобильной версии. */ export declare const MobileMenuBar: (props: IMobileMenuBarProps) => JSX.Element;