bizcharts
Version:
bizcharts
10 lines (9 loc) • 342 B
TypeScript
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 {};