Skip to content

Commit

Permalink
fix(plugin-types): readonly PenpotShapeBase width & height
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfran committed Jul 23, 2024
1 parent 8ce04d3 commit 415284f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/plugin-types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 415284f

Please sign in to comment.