@vearvip/react-picture-preview
Version:
一个基于 React 和 rc-image 的图片预览组件,具备图片旋转、翻转、缩放和下载等功能。
18 lines (17 loc) • 448 B
TypeScript
import "rc-image/assets/index.css";
interface PreviewOptions {
src: string;
images?: string[];
onClose?: () => void;
actions?: {
rotateLeft?: boolean;
rotateRight?: boolean;
zoomIn?: boolean;
zoomOut?: boolean;
flipX?: boolean;
flipY?: boolean;
download?: boolean;
};
}
export declare const preview: ({ src, images, onClose, actions }: PreviewOptions) => void;
export {};