UNPKG

bizcharts

Version:
10 lines (9 loc) 342 B
import Base, { IAnnotationBaseProps } from './base'; import { HtmlAnnotationOption } from '../../interface'; type BaseProps = Omit<IAnnotationBaseProps, 'offsetX'>; interface HtmlAnnotationProps extends HtmlAnnotationOption, BaseProps { } export default class Html extends Base<HtmlAnnotationProps> { annotationType: string; } export {};