File size: 329 Bytes
04f98c3
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { RenderingContext2D } from '../types';
import BoundingBox from '../BoundingBox';
import PathElement from './PathElement';
export default class CircleElement extends PathElement {
    type: string;
    path(ctx: RenderingContext2D): BoundingBox;
    getMarkers(): any;
}
//# sourceMappingURL=CircleElement.d.ts.map