From 0fe8616bb654822a5ff8f8e7abde09c45eeb261d Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Mon, 18 Sep 2023 11:13:10 -0500 Subject: [PATCH] fix type. close #1643 --- release.sh | 2 +- src/Shape.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index 5ead12d8..2b4eedee 100755 --- a/release.sh +++ b/release.sh @@ -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/ diff --git a/src/Shape.ts b/src/Shape.ts index 607a5b9b..c327dc12 100644 --- a/src/Shape.ts +++ b/src/Shape.ts @@ -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;