@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
12 lines (11 loc) • 429 B
TypeScript
import React from "react";
/** @internal */
export interface IAdaptiveMenuContentProps {
children?: React.ReactNode;
menuClassName?: string;
}
/**
* @internal Представляет собой адаптивное содержимое для меню {@link AdaptiveMenuBar}.
* См. также {@link AdaptiveMenuItem}
*/
export declare const AdaptiveMenuContent: (props: IAdaptiveMenuContentProps) => JSX.Element;