plot-plan-designer
Version:
Design Editor Tools with React.js + ant.design + fabric.js
13 lines (12 loc) • 388 B
TypeScript
export default NodeAction;
declare class NodeAction extends React.Component<any, any, any> {
static propTypes: {
canvasRef: PropTypes.Requireable<any>;
selectedItem: PropTypes.Requireable<object>;
};
constructor(props: any);
constructor(props: any, context: any);
render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';