UNPKG

@recogito/annotorious

Version:

A JavaScript image annotation library

9 lines 334 B
import type { Annotation, AnnotationTarget } from '@annotorious/core'; import type { Shape } from './Shape'; export interface ImageAnnotation extends Annotation { target: ImageAnnotationTarget; } export interface ImageAnnotationTarget extends AnnotationTarget { selector: Shape; } //# sourceMappingURL=ImageAnnotation.d.ts.map