UNPKG

350 BTypeScriptView Raw
1import Base, { IAnnotationBaseProps } from './base';
2import { HtmlAnnotationOption } from '../../interface';
3declare type BaseProps = Omit<IAnnotationBaseProps, 'offsetX'>;
4interface HtmlAnnotationProps extends HtmlAnnotationOption, BaseProps {
5}
6export default class Html extends Base<HtmlAnnotationProps> {
7 annotationType: string;
8}
9export {};