image-editor-little
Version:
20 lines (19 loc) • 501 B
TypeScript
import * as React from 'react';
interface IProps {
type: string;
info: {
size: number;
color: string;
};
setInfo: any;
onChange: (type: string, options?: {
color?: string;
size?: number;
}) => void;
onClose: () => void;
onCancel: () => void;
onDownload: () => void;
onCopy: () => void;
}
declare const Tools: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLDivElement>>;
export default Tools;