plot-plan-designer
Version:
Design Editor Tools with React.js + ant.design + fabric.js
23 lines (22 loc) • 700 B
TypeScript
export default WorkflowConfigurations;
declare class WorkflowConfigurations extends React.Component<any, any, any> {
static propTypes: {
canvasRef: PropTypes.Requireable<any>;
selectedItem: PropTypes.Requireable<object>;
workflow: PropTypes.Requireable<object>;
onChange: PropTypes.Requireable<(...args: any[]) => any>;
};
constructor(props: any);
constructor(props: any, context: any);
state: {
collapse: boolean;
activeKey: string;
};
handlers: {
onCollapse: () => void;
onChange: (activeKey: any) => void;
};
render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';