react-advanced-cropper
Version:
The react cropper library that gives the possibility to create croppers exactly suited for your website design
13 lines (12 loc) • 360 B
TypeScript
import { CSSProperties, FC, ReactNode } from 'react';
interface DesiredCropperRef {
isLoaded: () => boolean;
}
export interface CropperPreviewWrapperProps {
cropper?: DesiredCropperRef;
className?: string;
style?: CSSProperties;
children?: ReactNode;
}
export declare const CropperPreviewWrapper: FC<CropperPreviewWrapperProps>;
export {};