1 | import Base, { IAnnotationBaseProps } from './base';
|
2 | import { AnnotationPosition } from '../../interface';
|
3 | export interface AnnotationArcProps extends IAnnotationBaseProps {
|
4 | /** 起始位置 */
|
5 | readonly start: AnnotationPosition;
|
6 | /** 结束位置 */
|
7 | readonly end: AnnotationPosition;
|
8 | }
|
9 | export default class Arc extends Base<AnnotationArcProps> {
|
10 | annotationType: string;
|
11 | }
|