diff --git a/packages/saved-views-client/src/models/savedViews/DisplayStyles.ts b/packages/saved-views-client/src/models/savedViews/DisplayStyles.ts index 763e5114..4cedeb6c 100644 --- a/packages/saved-views-client/src/models/savedViews/DisplayStyles.ts +++ b/packages/saved-views-client/src/models/savedViews/DisplayStyles.ts @@ -489,12 +489,20 @@ export interface DisplayStyleModelAppearanceProps modelId?: string; } +/** Wire format describing a ClipIntersectionStyle. */ +export interface ClipIntersectionStyleProps { + color?: RgbColorProps; + width?: number; +} + /** Wire format describing a ClipStyle. */ export interface ClipStyleProps { produceCutGeometry?: boolean; cutStyle?: CutStyleProps; insideColor?: RgbColorProps; outsideColor?: RgbColorProps; + colorizeIntersection?: boolean; + intersectionStyle?: ClipIntersectionStyleProps; } /**