mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 10:47:37 +08:00
fix type. close #1643
This commit is contained in:
parent
d8d6d653e3
commit
0fe8616bb6
@ -59,7 +59,7 @@ git tag $1 >/dev/null
|
||||
cd ../konva
|
||||
git push >/dev/null
|
||||
git push --tags >/dev/null
|
||||
npm publish >/dev/null
|
||||
npm publish
|
||||
|
||||
echo "copy konva.js into konva-site"
|
||||
cp ./konva.js ../konva-site/
|
||||
|
@ -539,7 +539,7 @@ export class Shape<
|
||||
const fillRect = this.getSelfRect();
|
||||
|
||||
const applyStroke = !config.skipStroke && this.hasStroke();
|
||||
const strokeWidth = (applyStroke && this.strokeWidth()) || 0;
|
||||
const strokeWidth: number = (applyStroke && this.strokeWidth()) || 0;
|
||||
|
||||
const fillAndStrokeWidth = fillRect.width + strokeWidth;
|
||||
const fillAndStrokeHeight = fillRect.height + strokeWidth;
|
||||
|
Loading…
Reference in New Issue
Block a user