File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed
Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff 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'
60026014declare type StrokeJoin = 'MITER' | 'BEVEL' | 'ROUND'
60036015declare type HandleMirroring = 'NONE' | 'ANGLE' | 'ANGLE_AND_LENGTH'
60046016/**
Original file line number Diff line number Diff 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'
59986010declare type StrokeJoin = 'MITER' | 'BEVEL' | 'ROUND'
59996011declare type HandleMirroring = 'NONE' | 'ANGLE' | 'ANGLE_AND_LENGTH'
60006012/**
You can’t perform that action at this time.
0 commit comments