File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -483,7 +483,7 @@ export interface IRowAttributes {
483
483
id ?: string ;
484
484
485
485
/** The type of this node (always "row") */
486
- type ? : "row" ;
486
+ type : "row" ;
487
487
488
488
/**
489
489
relative weight for sizing of this row in parent row
@@ -641,7 +641,7 @@ export interface ITabSetAttributes {
641
641
tabLocation ?: ITabLocation ;
642
642
643
643
/** The type of this node (always "tabset") */
644
- type ? : "tabset" ;
644
+ type : "tabset" ;
645
645
646
646
/**
647
647
relative weight for sizing of this tabset in parent row
@@ -828,7 +828,7 @@ export interface ITabAttributes {
828
828
tabsetClassName ?: string ;
829
829
830
830
/** The type of this node (always "tab") */
831
- type ? : "tab" ;
831
+ type : "tab" ;
832
832
}
833
833
export interface IBorderAttributes {
834
834
/**
@@ -909,5 +909,5 @@ export interface IBorderAttributes {
909
909
size ?: number ;
910
910
911
911
/** The type of this node (always "border") */
912
- type ? : "border" ;
912
+ type : "border" ;
913
913
}
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ export class TabNode extends Node implements IDraggable {
177
177
toJson ( ) : IJsonTabNode {
178
178
const json = { } ;
179
179
TabNode . attributeDefinitions . toJson ( json , this . attributes ) ;
180
- return json ;
180
+ return json as IJsonTabNode ;
181
181
}
182
182
183
183
/** @internal */
You can’t perform that action at this time.
0 commit comments