UNPKG

bizcharts

Version:
9 lines (8 loc) 282 B
import Base, { IAnnotationBaseProps } from './base'; import { ImageOption } from '../../interface'; interface AnnotationImageProps extends ImageOption, IAnnotationBaseProps { } export default class Image extends Base<AnnotationImageProps> { annotationType: string; } export {};