@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
17 lines (16 loc) • 786 B
TypeScript
/// <reference types="react" />
import { BatchSelectionStateParams } from '@docsvision/webclient/Platform/BatchSelectionState';
import { BaseControlState } from '@docsvision/webclient/System/BaseControl';
import { BaseControlImpl } from '@docsvision/webclient/System/BaseControlImpl';
export interface IBatchSelectionStateState extends BatchSelectionStateParams, BaseControlState {
}
export interface BatchSelectionStateState extends IBatchSelectionStateState {
}
/**
* Класс элемента управления WebFrameHeaderContainerImpl.
*/
export declare class BatchSelectionStateImpl extends BaseControlImpl<BatchSelectionStateParams, IBatchSelectionStateState> {
constructor(state: any, props: any);
componentDidMount(): void;
renderControl(): JSX.Element;
}