plot-plan-designer
Version:
Design Editor Tools with React.js + ant.design + fabric.js
14 lines (13 loc) • 462 B
TypeScript
export default StyleList;
declare class StyleList extends React.Component<any, any, any> {
static propTypes: {
styles: PropTypes.Requireable<any[]>;
onEdit: PropTypes.Requireable<(...args: any[]) => any>;
onDelete: PropTypes.Requireable<(...args: any[]) => any>;
};
constructor(props: any);
constructor(props: any, context: any);
render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';