@@ -278,6 +278,15 @@ export declare namespace ContentTree {
278278 /** Configuration data to be passed to the component. */
279279 attributes : CustomCodeComponentAttributes ;
280280 }
281+ interface InNumbersNumber extends Node {
282+ type : "in-numbers-number" ;
283+ numberLabel : string ;
284+ description : string ;
285+ }
286+ interface InNumbers extends Parent {
287+ type : "in-numbers" ;
288+ children : [ Heading , InNumbersNumber , InNumbersNumber ?, InNumbersNumber ?] ;
289+ }
281290 namespace full {
282291 type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text ;
283292 type LayoutWidth = "auto" | "in-line" | "inset-left" | "inset-right" | "full-bleed" | "full-grid" | "mid-grid" | "full-width" ;
@@ -558,6 +567,15 @@ export declare namespace ContentTree {
558567 /** Configuration data to be passed to the component. */
559568 attributes : CustomCodeComponentAttributes ;
560569 }
570+ interface InNumbersNumber extends Node {
571+ type : "in-numbers-number" ;
572+ numberLabel : string ;
573+ description : string ;
574+ }
575+ interface InNumbers extends Parent {
576+ type : "in-numbers" ;
577+ children : [ Heading , InNumbersNumber , InNumbersNumber ?, InNumbersNumber ?] ;
578+ }
561579 }
562580 namespace transit {
563581 type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text ;
@@ -824,6 +842,15 @@ export declare namespace ContentTree {
824842 /** How the component should be presented in the article page according to the column layout system */
825843 layoutWidth : LayoutWidth ;
826844 }
845+ interface InNumbersNumber extends Node {
846+ type : "in-numbers-number" ;
847+ numberLabel : string ;
848+ description : string ;
849+ }
850+ interface InNumbers extends Parent {
851+ type : "in-numbers" ;
852+ children : [ Heading , InNumbersNumber , InNumbersNumber ?, InNumbersNumber ?] ;
853+ }
827854 }
828855 namespace loose {
829856 type BodyBlock = Paragraph | Heading | ImageSet | Flourish | BigNumber | CustomCodeComponent | Layout | List | Blockquote | Pullquote | ScrollyBlock | ThematicBreak | Table | Recommended | Tweet | Video | YoutubeVideo | Text ;
@@ -1105,5 +1132,14 @@ export declare namespace ContentTree {
11051132 /** Configuration data to be passed to the component. */
11061133 attributes ?: CustomCodeComponentAttributes ;
11071134 }
1135+ interface InNumbersNumber extends Node {
1136+ type : "in-numbers-number" ;
1137+ numberLabel : string ;
1138+ description : string ;
1139+ }
1140+ interface InNumbers extends Parent {
1141+ type : "in-numbers" ;
1142+ children : [ Heading , InNumbersNumber , InNumbersNumber ?, InNumbersNumber ?] ;
1143+ }
11081144 }
11091145}
0 commit comments