@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
16 lines (15 loc) • 793 B
TypeScript
/// <reference types="react" />
import { RightMainMenuItemPanelParams } from "@docsvision/webclient/Platform/RightMainMenuItemPanel";
import { PanelImpl, IPanelState } from "@docsvision/webclient/Platform/PanelImpl";
/** @internal */
export interface IRightMainMenuItemPanelState extends RightMainMenuItemPanelParams, IPanelState {
}
export interface RightMainMenuItemPanelState extends IRightMainMenuItemPanelState {
}
/** @internal */
export declare type RightMainMenuItemPanelImplState = IRightMainMenuItemPanelState;
/** @internal */
export declare class RightMainMenuItemPanelImpl extends PanelImpl<RightMainMenuItemPanelParams, IRightMainMenuItemPanelState> {
constructor(props: RightMainMenuItemPanelParams, state: IRightMainMenuItemPanelState);
renderControl(): JSX.Element;
}