UNPKG

lost-sia

Version:

Single Image Annotation Tool

14 lines (13 loc) 586 B
import { Label } from '../../types'; type ImageToolsProps = { canJunk: boolean; imageLabelIds?: number[]; isDisabled?: boolean; isFullscreen?: boolean; isImageJunk?: boolean; possibleLabels: Label[]; onImageLabelsChanged?: (selectedImageIds: number[]) => void; onSetIsImageJunk?: (isImageJunk: boolean) => void; }; declare const ImageTools: ({ canJunk, isDisabled, isFullscreen, isImageJunk, imageLabelIds, possibleLabels, onImageLabelsChanged, onSetIsImageJunk, }: ImageToolsProps) => import("react/jsx-runtime").JSX.Element; export default ImageTools;