diff --git a/libs/plugin-types/index.d.ts b/libs/plugin-types/index.d.ts index 2b5a0c2..777772b 100644 --- a/libs/plugin-types/index.d.ts +++ b/libs/plugin-types/index.d.ts @@ -1199,6 +1199,12 @@ export interface PenpotShapeBase extends PenpotPluginData { */ name: string; + /** + * The parent shape. If the shape is the first level the parent will be the root shape. + * For the root shape the parent is null + */ + readonly parent: PenpotShape | null; + /** * The x-coordinate of the shape's position. */