update readme

This commit is contained in:
Anton Lavrenov 2021-11-23 10:51:58 -05:00
parent 3c5b41f182
commit b39b9a8116
2 changed files with 13 additions and 1 deletions

View File

@ -128,6 +128,18 @@ In order to run `konva` in nodejs environment you also need to install `canvas`
npm install konva canvas
```
Then you can use the same Konva API and all Konva demos will work just fine. You just don't need to use `container` attribute in your stage.
```js
import Konva from 'konva';
const stage = new Konva.Stage({
width: 500,
height: 500,
});
// then all regular Konva code will work
```
### CommonJS modules
By default `Konva` is delivered as ES modules. Some environments may automatically take CommonJS version of `Konva`. If it doesn't work for you, try to use `cmj` version explicitly:

View File

@ -1242,7 +1242,7 @@ export class Transformer extends Group {
ignoreStroke: GetSet<boolean, this>;
boundBoxFunc: GetSet<(oldBox: Box, newBox: Box) => Box, this>;
anchorDragBoundFunc: GetSet<
(oldPos: Vector2d, newPos: Vector2d, e: MouseEvent) => Box,
(oldPos: Vector2d, newPos: Vector2d, e: MouseEvent) => Vector2d,
this
>;
shouldOverdrawWholeArea: GetSet<boolean, this>;