@5minds/processcube_app_sdk
Version:
The SDK for ProcessCube Apps
9 lines (8 loc) • 348 B
TypeScript
import { FlowNodeInstance, ProcessInstance } from '@5minds/processcube_engine_sdk';
export type RetryDialogProps = {
isOpen: boolean;
processInstance: ProcessInstance;
flowNodeInstance?: FlowNodeInstance;
onClose: () => void;
};
export declare function RetryDialog(props: RetryDialogProps): import("react/jsx-runtime").JSX.Element;