Spaces:
Running
Running
File size: 400 Bytes
04f98c3 |
1 2 3 4 5 6 7 8 9 10 11 |
import { RenderingContext2D } from '../types';
import Point from '../Point';
import BoundingBox from '../BoundingBox';
import PathElement, { Marker } from './PathElement';
export default class LineElement extends PathElement {
type: string;
getPoints(): Point[];
path(ctx: RenderingContext2D): BoundingBox;
getMarkers(): Marker[];
}
//# sourceMappingURL=LineElement.d.ts.map |