@xrenders/xflow
Version:
一款功能强大、易用灵活的流程编辑器框架,帮助你轻松构建复杂的工作流和流程产品
11 lines (10 loc) • 355 B
TypeScript
import React from 'react';
import './index.less';
export type UndoRedoProps = {
handleUndo: () => void;
handleRedo: () => void;
pastStates: any[];
futureStates: any[];
};
declare const _default: React.MemoExoticComponent<({ handleUndo, handleRedo, pastStates, futureStates }: UndoRedoProps) => React.JSX.Element>;
export default _default;