@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
19 lines (18 loc) • 895 B
TypeScript
import { IApprovalHistoryTableProps } from "@docsvision/webclient/Approval/IApprovalHistoryTableProps";
import { IApprovalHistoryTableState } from "@docsvision/webclient/Approval/IApprovalHistoryTableState";
import React from "react";
/** @internal */
export declare class ApprovalHistoryTable extends React.Component<IApprovalHistoryTableProps, IApprovalHistoryTableState> {
/** @internal */
constructor(props: IApprovalHistoryTableProps);
/** @internal */
UNSAFE_componentWillReceiveProps(nextProps: IApprovalHistoryTableProps, nextContext: any): void;
/** При клике на цикл. */
protected handleCycleClick(cycleNumber: any): void;
/** При клике на обновление. */
protected onRefreshClick(): void;
protected onRefreshClickEmptyStory(): void;
private updateCurrentCycle;
/** @internal */
render(): JSX.Element;
}