diff options
author | pycraft114 <pycraft114@gmail.com> | 2018-05-10 10:53:28 +0900 |
---|---|---|
committer | pycraft114 <pycraft114@gmail.com> | 2018-05-10 10:53:28 +0900 |
commit | ebb624d6ed84171389fb6b4c3f5b50af03f41e9b (patch) | |
tree | c8311362f6322a1b05532553e098630f4fca8cf7 | |
parent | 6d3262fca31419c1cbad746aa03ed1ec9aaae5a0 (diff) | |
download | svg.js-ebb624d6ed84171389fb6b4c3f5b50af03f41e9b.tar.gz svg.js-ebb624d6ed84171389fb6b4c3f5b50af03f41e9b.zip |
Type fix
-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 1544c1a..7144467 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -105,7 +105,7 @@ declare namespace svgjs { }
interface Element {
bbox(): BBox;
- rbox(comparison: any): RBox;
+ rbox(comparison?: any): RBox;
tbox(): TBox;
}
interface Library {
|