UNPKG

@5minds/processcube_app_sdk

Version:
15 lines (14 loc) 547 B
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 {};