@5minds/processcube_app_sdk
Version:
The SDK for ProcessCube Apps
13 lines (12 loc) • 357 B
TypeScript
import { FlowNode } from './bpmnViewerOverlayCreator';
type FlowNodeButtonAreaProps = {
flowNode: FlowNode;
onRetryClick?: () => void;
onGotoClick?: () => void;
onPlayClick?: () => void;
};
/**
* @deprecated
*/
export default function FlowNodeButtonArea(props: FlowNodeButtonAreaProps): import("react/jsx-runtime").JSX.Element;
export {};