@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
17 lines (16 loc) • 827 B
TypeScript
/// <reference types="react" />
import { FolderGridBatchOperationsNodeParams } from '@docsvision/webclient/Platform/FolderGridBatchOperationsNode';
import { PanelImpl, IPanelState } from '@docsvision/webclient/Platform/PanelImpl';
export interface IFolderGridBatchOperationsNodeState extends FolderGridBatchOperationsNodeParams, IPanelState {
}
export interface FolderGridBatchOperationsNodeState extends IFolderGridBatchOperationsNodeState {
}
/**
* Класс элемента управления FolderGridBatchOperationsNode.
*/
export declare class FolderGridBatchOperationsNodeImpl extends PanelImpl<FolderGridBatchOperationsNodeParams, IFolderGridBatchOperationsNodeState> {
constructor(state: any, props: any);
componentDidMount(): void;
componentWillUnmount(): void;
renderControl(): JSX.Element;
}