diff options
author | Ulrich-Matthias Schäfer <ulima.ums@googlemail.com> | 2018-02-17 12:44:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-17 12:44:49 +0100 |
commit | 5027b0fa68a9a6d1a0739aba23e66d975a307986 (patch) | |
tree | 789050baa1924dbd1b23946bf3725e580c11ff2f | |
parent | 2d690e7b214b6b0e79e80ffcf1f6b87e619d547e (diff) | |
parent | 140f15acd6c9791e4bee90c218f56697a0091816 (diff) | |
download | svg.js-5027b0fa68a9a6d1a0739aba23e66d975a307986.tar.gz svg.js-5027b0fa68a9a6d1a0739aba23e66d975a307986.zip |
Merge pull request #762 from Nexmean/fix-typings
Fix typings for arrays that takes plot method.
-rw-r--r-- | svg.js.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index befa2b6..bfa056d 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -423,7 +423,7 @@ declare namespace svgjs { // line.js
interface ArrayPoint extends Array<number> { }
- type PointArrayAlias = ArrayPoint | number[] | PointArray | string;
+ type PointArrayAlias = ArrayPoint[] | number[] | PointArray | string;
export interface Line extends Shape {
new (): Line;
|