UNPKG

fx-form-widget

Version:
12 lines (11 loc) 238 B
import { FC } from "react"; export interface ImageListProps { images: Data[]; } export interface Data { width?: number; url?: string; name?: string; } declare const ImageList: FC<ImageListProps>; export default ImageList;