aboutsummaryrefslogtreecommitdiffstats
path: root/svg.js.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'svg.js.d.ts')
-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;