13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
|
|
import type { FC } from "react";
|
|||
|
|
|
|||
|
|
export interface PreviewImgProps {
|
|||
|
|
/** 图片列表 */
|
|||
|
|
files: any[];
|
|||
|
|
/** 图片地址的key,默认 filePath */
|
|||
|
|
fileUrlKey?: string;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
declare const PreviewImg: FC<PreviewImgProps>;
|
|||
|
|
|
|||
|
|
export default PreviewImg;
|