LineElement.d.ts 400 B

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