@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
23 lines (22 loc) • 1.2 kB
TypeScript
import { Panel, PanelParams } from '@docsvision/webclient/Platform/Panel';
import { IPanelState } from '@docsvision/webclient/Platform/PanelImpl';
import { WebFrameContentContainerImpl } from '@docsvision/webclient/Platform/WebFrameContentContainerImpl';
import { $ApplicationSettings } from '@docsvision/webclient/StandardServices';
/**
* Содержит публичные свойства элемента управления [Метка]{@link WebFrameContentContainer}.
*/
export declare class WebFrameContentContainerParams extends PanelParams {
/** Стандартный CSS класс со стилями элемента управления */
standardCssClass?: string;
services?: $ApplicationSettings;
}
export interface IWebFrameContentContainerState extends WebFrameContentContainerParams, IPanelState {
}
/**
* Класс элемента управления WebFrameContentContainer.
*/
export declare class WebFrameContentContainer extends Panel<WebFrameContentContainerParams, IWebFrameContentContainerState> {
/** @notest @internal */
protected createParams(): WebFrameContentContainerParams;
protected createImpl(): WebFrameContentContainerImpl;
}