UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

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