Skip to content

Commit

Permalink
Merge pull request #299 from figma/elaine/add-corner-radius
Browse files Browse the repository at this point in the history
[web] Fix missing properties in plugin-typings
  • Loading branch information
ahurtado-figma committed Jul 12, 2024
2 parents 1527e53 + 87465ab commit b74f820
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion plugin-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1549,6 +1549,7 @@ declare type VariableBindableNodeField =
| 'paddingTop'
| 'paddingBottom'
| 'visible'
| 'cornerRadius'
| 'topLeftRadius'
| 'topRightRadius'
| 'bottomLeftRadius'
Expand Down Expand Up @@ -1641,7 +1642,15 @@ interface DeprecatedBackgroundMixin {
backgrounds: ReadonlyArray<Paint>
backgroundStyleId: string
}
declare type StrokeCap = 'NONE' | 'ROUND' | 'SQUARE' | 'ARROW_LINES' | 'ARROW_EQUILATERAL'
declare type StrokeCap =
| 'NONE'
| 'ROUND'
| 'SQUARE'
| 'ARROW_LINES'
| 'ARROW_EQUILATERAL'
| 'TRIANGLE_FILLED'
| 'DIAMOND_FILLED'
| 'CIRCLE_FILLED'
declare type StrokeJoin = 'MITER' | 'BEVEL' | 'ROUND'
declare type HandleMirroring = 'NONE' | 'ANGLE' | 'ANGLE_AND_LENGTH'
interface AutoLayoutMixin {
Expand Down

0 comments on commit b74f820

Please sign in to comment.