fix type. close #1643

This commit is contained in:
Anton Lavrenov 2023-09-18 11:13:10 -05:00
parent d8d6d653e3
commit 0fe8616bb6
2 changed files with 2 additions and 2 deletions

View File

@ -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/

View File

@ -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;