UNPKG

bizcharts

Version:
9 lines (8 loc) 277 B
import Base, { IAnnotationBaseProps } from './base'; import { LineOption } from '../../interface'; interface AnnotationLineProps extends LineOption, IAnnotationBaseProps { } export default class Line extends Base<AnnotationLineProps> { annotationType: string; } export {};