UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

16 lines (15 loc) 598 B
/// <reference types="react" /> import { PanelImpl, IPanelState } from "@docsvision/webclient/Platform/PanelImpl"; import { TabPageParams } from "@docsvision/webclient/Platform/TabPage"; /** @internal */ export interface ITabPageState extends TabPageParams, IPanelState { } export interface TabPageState extends ITabPageState { } /** @internal */ export declare type TabPageImplState = ITabPageState; /** @internal */ export declare class TabPageImpl extends PanelImpl<TabPageParams, ITabPageState> { constructor(props: TabPageParams, state: ITabPageState); renderControl(): JSX.Element; }