@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
29 lines (27 loc) • 1.17 kB
TypeScript
/// <reference types="react" />
import { $DeviceType } from "@docsvision/webclient/StandardServices";
import { BaseControl, BaseControlParams, BaseControlState } from "@docsvision/webclient/System/BaseControl";
import { ControlImpl } from "@docsvision/webclient/System/ControlImpl";
/**
* Содержит публичные свойства [EmptyControlStub]{@link EmptyControlStub}.
*/
export declare class DVWebToolInfoParams extends BaseControlParams {
/** Стандартный CSS класс со стилями элемента управления. */
standardCssClass?: string;
services?: $DeviceType;
}
export interface IState extends DVWebToolInfoParams, BaseControlState {
}
export interface State extends IState {
}
/**
* Элемент управления для отборажения имени и должности пользователя
*/
export declare class DVWebToolInfo extends BaseControl<DVWebToolInfoParams, IState> {
constructor(props: any);
/** @internal */
protected createParams(): DVWebToolInfoParams;
/** @internal */
protected createImpl(): ControlImpl;
renderControl(): JSX.Element;
}