mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +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
|
cd ../konva
|
||||||
git push >/dev/null
|
git push >/dev/null
|
||||||
git push --tags >/dev/null
|
git push --tags >/dev/null
|
||||||
npm publish >/dev/null
|
npm publish
|
||||||
|
|
||||||
echo "copy konva.js into konva-site"
|
echo "copy konva.js into konva-site"
|
||||||
cp ./konva.js ../konva-site/
|
cp ./konva.js ../konva-site/
|
||||||
|
@ -539,7 +539,7 @@ export class Shape<
|
|||||||
const fillRect = this.getSelfRect();
|
const fillRect = this.getSelfRect();
|
||||||
|
|
||||||
const applyStroke = !config.skipStroke && this.hasStroke();
|
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 fillAndStrokeWidth = fillRect.width + strokeWidth;
|
||||||
const fillAndStrokeHeight = fillRect.height + strokeWidth;
|
const fillAndStrokeHeight = fillRect.height + strokeWidth;
|
||||||
|
Loading…
Reference in New Issue
Block a user