Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions libs/plugin-types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,12 +367,25 @@ export interface Boolean extends ShapeBase {
/**
* Converts the boolean shape to its path data representation.
* @return Returns the path data (d attribute) as a string.
* @deprecated Use the `d` attribute
*/
toD(): string;

/**
* The content of the boolean shape, defined as the path string.
* @deprecated Use either `d` or `commands`.
*/
content: string;

/**
* The content of the boolean shape, defined as the path string.
*/
d: string;

/**
* The content of the boolean shape, defined as an array of path commands.
*/
content: Array<PathCommand>;
commands: Array<PathCommand>;

/**
* The fills applied to the shape.
Expand Down Expand Up @@ -3108,12 +3121,25 @@ export interface Path extends ShapeBase {
/**
* Converts the path shape to its path data representation.
* @return Returns the path data (d attribute) as a string.
* @deprecated Use the `d` attribute
*/
toD(): string;

/**
* The content of the path shape, defined as an array of path commands.
* The content of the boolean shape, defined as the path string.
* @deprecated Use either `d` or `commands`.
*/
content: string;

/**
* The content of the boolean shape, defined as the path string.
*/
d: string;

/**
* The content of the boolean shape, defined as an array of path commands.
*/
content: Array<PathCommand>;
commands: Array<PathCommand>;

/**
* The fills applied to the shape.
Expand Down
Loading