@churchapps/apphelper
Version:
Library of helper functions for React and NextJS ChurchApps
14 lines • 416 B
TypeScript
import "cropperjs/dist/cropper.css";
interface Props {
title?: string;
photoUrl: string;
aspectRatio: number;
onUpdate: (dataUrl?: string) => void;
onCancel?: () => void;
outputWidth?: number;
outputHeight?: number;
hideDelete?: boolean;
}
export declare function ImageEditor(props: Props): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=ImageEditor.d.ts.map