mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-02-08 08:09:18 -05:00
fix(plugin-types): readonly PenpotShapeBase width & height
This commit is contained in:
parent
8ce04d38a1
commit
415284ff92
1 changed files with 2 additions and 2 deletions
4
libs/plugin-types/index.d.ts
vendored
4
libs/plugin-types/index.d.ts
vendored
|
@ -1224,12 +1224,12 @@ export interface PenpotShapeBase extends PenpotPluginData {
|
|||
/**
|
||||
* The width of the shape.
|
||||
*/
|
||||
width: number;
|
||||
readonly width: number;
|
||||
|
||||
/**
|
||||
* The height of the shape.
|
||||
*/
|
||||
height: number;
|
||||
readonly height: number;
|
||||
|
||||
/**
|
||||
* Returns the bounding box surrounding the current shape
|
||||
|
|
Loading…
Add table
Reference in a new issue