Skip to content

Commit 98defe6

Browse files
authored
changes for v1.114.0 (#338)
1 parent 504734d commit 98defe6

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

plugin-api-standalone.d.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3766,6 +3766,10 @@ interface NoiseEffectBase {
37663766
* The string literal representing the type of effect this is. Always check the `type` before reading other properties.
37673767
*/
37683768
readonly type: 'NOISE'
3769+
/**
3770+
* The color of the noise effect.
3771+
*/
3772+
readonly color: RGBA
37693773
/**
37703774
* The blend mode of the noise.
37713775
*/
@@ -5998,7 +6002,15 @@ interface DeprecatedBackgroundMixin {
59986002
*/
59996003
backgroundStyleId: string
60006004
}
6001-
declare type StrokeCap = 'NONE' | 'ROUND' | 'SQUARE' | 'ARROW_LINES' | 'ARROW_EQUILATERAL'
6005+
declare type StrokeCap =
6006+
| 'NONE'
6007+
| 'ROUND'
6008+
| 'SQUARE'
6009+
| 'ARROW_LINES'
6010+
| 'ARROW_EQUILATERAL'
6011+
| 'DIAMOND_FILLED'
6012+
| 'TRIANGLE_FILLED'
6013+
| 'CIRCLE_FILLED'
60026014
declare type StrokeJoin = 'MITER' | 'BEVEL' | 'ROUND'
60036015
declare type HandleMirroring = 'NONE' | 'ANGLE' | 'ANGLE_AND_LENGTH'
60046016
/**

plugin-api.d.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3762,6 +3762,10 @@ interface NoiseEffectBase {
37623762
* The string literal representing the type of effect this is. Always check the `type` before reading other properties.
37633763
*/
37643764
readonly type: 'NOISE'
3765+
/**
3766+
* The color of the noise effect.
3767+
*/
3768+
readonly color: RGBA
37653769
/**
37663770
* The blend mode of the noise.
37673771
*/
@@ -5994,7 +5998,15 @@ interface DeprecatedBackgroundMixin {
59945998
*/
59955999
backgroundStyleId: string
59966000
}
5997-
declare type StrokeCap = 'NONE' | 'ROUND' | 'SQUARE' | 'ARROW_LINES' | 'ARROW_EQUILATERAL'
6001+
declare type StrokeCap =
6002+
| 'NONE'
6003+
| 'ROUND'
6004+
| 'SQUARE'
6005+
| 'ARROW_LINES'
6006+
| 'ARROW_EQUILATERAL'
6007+
| 'DIAMOND_FILLED'
6008+
| 'TRIANGLE_FILLED'
6009+
| 'CIRCLE_FILLED'
59986010
declare type StrokeJoin = 'MITER' | 'BEVEL' | 'ROUND'
59996011
declare type HandleMirroring = 'NONE' | 'ANGLE' | 'ANGLE_AND_LENGTH'
60006012
/**

0 commit comments

Comments
 (0)