UNPKG

fastlion-amis

Version:

一种MIS页面生成工具

16 lines (15 loc) 494 B
import React from 'react'; import { MediaItem } from '../ImageGallery'; interface IProps { unionSelecting: boolean; mediaListShow: boolean; mediaList: Array<MediaItem>; currentIndex: number; handleUnionSelecting: (show: boolean) => void; toggleMediaListShow: () => void; handleRotate: (type: 'clockwise' | 'anticlockwise') => void; next: () => void; prev: () => void; } declare const ViewerUtils: React.FC<IProps>; export default ViewerUtils;