aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich-Matthias Schäfer <ulima.ums@googlemail.com>2019-02-17 19:48:00 +0100
committerGitHub <noreply@github.com>2019-02-17 19:48:00 +0100
commite4a8579000c1a4e6587bd63eb2875bff677f5f1e (patch)
tree66993bba99ca34348d9e1845d8ecbef25aa7c984
parent1574b27952a8bfc27671c6abbbdf19a960824894 (diff)
parentec790a9cd311a2d9e0459bceea027dec24c6f009 (diff)
downloadsvg.js-e4a8579000c1a4e6587bd63eb2875bff677f5f1e.tar.gz
svg.js-e4a8579000c1a4e6587bd63eb2875bff677f5f1e.zip
Merge pull request #963 from Perlkonig/bugfix/polyline-typo
Fix typo in type file for Polyline and Marker
-rw-r--r--svg.js.d.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts
index 1fd6b35..dec13f6 100644
--- a/svg.js.d.ts
+++ b/svg.js.d.ts
@@ -704,12 +704,12 @@ declare namespace svgjs {
move(x: number, y: number): this;
size(width: number, height: number): this;
}
- export interface PolyLine extends poly {
- new (): PolyLine;
+ export interface Polyline extends poly {
+ new (): Polyline;
}
- interface Library { PolyLine: PolyLine; }
+ interface Library { Polyline: Polyline; }
interface Container {
- polyline(points: PointArrayAlias): PolyLine;
+ polyline(points: PointArrayAlias): Polyline;
}
export interface Polygon extends poly {
new (): Polygon;