@5minds/processcube_app_sdk
Version:
The SDK for ProcessCube Apps
15 lines (14 loc) • 547 B
TypeScript
import { FlowNode } from './bpmnViewerOverlayCreator';
type FlowNodeOverlayProps = {
flowNode: FlowNode;
width: number;
height: number;
retryAction?: (processInstanceId: string, flowNodeInstanceId?: string, newToken?: any) => void;
gotoProcessAction?: (processInstanceId: string) => void;
gotoManualOrUserTaskAction?: (processInstanceId: string, flowNodeId: string) => void;
};
/**
* @deprecated
*/
export default function FlowNodeOverlay(props: FlowNodeOverlayProps): import("react/jsx-runtime").JSX.Element;
export {};