quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
14 lines (13 loc) • 433 B
TypeScript
import { UploadProps } from 'antd';
import { ImgCropProps } from 'antd-img-crop';
import { FC } from 'react';
import { UPLOAD_IMG_CROP } from '../../../Types';
interface IChildren extends Omit<ImgCropProps, 'children'> {
upload: UploadProps;
}
export interface IUploadImgCrop {
ctype: typeof UPLOAD_IMG_CROP;
props: IChildren;
}
declare const UploadImgCrop: FC<IUploadImgCrop>;
export default UploadImgCrop;