diff options
author | pycraft114 <pycraft114@gmail.com> | 2018-05-09 20:19:24 +0900 |
---|---|---|
committer | pycraft114 <pycraft114@gmail.com> | 2018-05-09 20:19:24 +0900 |
commit | 6d3262fca31419c1cbad746aa03ed1ec9aaae5a0 (patch) | |
tree | 170e4616190261b8603a4fcbb3f60c8d73a8d17c /svg.js.d.ts | |
parent | 6ff0dcfb4b5660f7a767c60d01772b8be6ff0024 (diff) | |
download | svg.js-6d3262fca31419c1cbad746aa03ed1ec9aaae5a0.tar.gz svg.js-6d3262fca31419c1cbad746aa03ed1ec9aaae5a0.zip |
Optional parameter for 'rbox' method
Diffstat (limited to 'svg.js.d.ts')
-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 cd46c0f..1544c1a 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -105,7 +105,7 @@ declare namespace svgjs { }
interface Element {
bbox(): BBox;
- rbox(container?: Container): RBox;
+ rbox(comparison: any): RBox;
tbox(): TBox;
}
interface Library {
|