main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
400 bytes
|
Rev | Line | |
---|
[79a0317] | 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 |
---|
Note:
See
TracBrowser
for help on using the repository browser.