UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

27 lines (26 loc) 1.22 kB
/// <reference types="react" /> import { BaseControl, BaseControlParams, BaseControlState } from "@docsvision/webclient/System/BaseControl"; import { ControlImpl } from '@docsvision/webclient/System/ControlImpl'; /** * Содержит публичные свойства элемента управления [Метка]{@link WebFrameCurrentPageName}. */ export declare class WebFrameCurrentPageNameParams extends BaseControlParams { /** Заголовок страницы */ header?: string; /** Стандартный CSS класс со стилями элемента управления */ standardCssClass?: string; } export interface IWebFrameCurrentPageNameState extends WebFrameCurrentPageNameParams, BaseControlState { header?: string; } /** * Класс элемента управления WebFrameCurrentPageName. */ export declare class WebFrameCurrentPageName extends BaseControl<WebFrameCurrentPageNameParams, IWebFrameCurrentPageNameState> { /** @notest @internal */ protected createParams(): WebFrameCurrentPageNameParams; /** @notest @internal */ protected createImpl(): ControlImpl; componentDidMount(): void; renderControl(): JSX.Element; }