UNPKG

282 BTypeScriptView Raw
1import Base, { IAnnotationBaseProps } from './base';
2import { ImageOption } from '../../interface';
3interface AnnotationImageProps extends ImageOption, IAnnotationBaseProps {
4}
5export default class Image extends Base<AnnotationImageProps> {
6 annotationType: string;
7}
8export {};