UNPKG

287 BTypeScriptView Raw
1import Base, { IAnnotationBaseProps } from './base';
2import { TextOption } from '../../interface';
3interface AnnotationTextProps extends TextOption, IAnnotationBaseProps {
4}
5export default class Text extends Base<AnnotationTextProps> {
6 protected annotationType: string;
7}
8export {};