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