UNPKG

bizcharts

Version:
9 lines (8 loc) 287 B
import Base, { IAnnotationBaseProps } from './base'; import { TextOption } from '../../interface'; interface AnnotationTextProps extends TextOption, IAnnotationBaseProps { } export default class Text extends Base<AnnotationTextProps> { protected annotationType: string; } export {};