File tree Expand file tree Collapse file tree 1 file changed +8
-24
lines changed Expand file tree Collapse file tree 1 file changed +8
-24
lines changed Original file line number Diff line number Diff line change @@ -482,12 +482,8 @@ export interface IRowAttributes {
482
482
*/
483
483
id ?: string ;
484
484
485
- /**
486
-
487
-
488
- Fixed value: "row"
489
- */
490
- type ?: string ;
485
+ /** The type of this node (always "row") */
486
+ type ?: "row" ;
491
487
492
488
/**
493
489
relative weight for sizing of this row in parent row
@@ -644,12 +640,8 @@ export interface ITabSetAttributes {
644
640
*/
645
641
tabLocation ?: ITabLocation ;
646
642
647
- /**
648
-
649
-
650
- Fixed value: "tabset"
651
- */
652
- type ?: string ;
643
+ /** The type of this node (always "tabset") */
644
+ type ?: "tabset" ;
653
645
654
646
/**
655
647
relative weight for sizing of this tabset in parent row
@@ -835,12 +827,8 @@ export interface ITabAttributes {
835
827
*/
836
828
tabsetClassName ?: string ;
837
829
838
- /**
839
-
840
-
841
- Fixed value: "tab"
842
- */
843
- type ?: string ;
830
+ /** The type of this node (always "tab") */
831
+ type ?: "tab" ;
844
832
}
845
833
export interface IBorderAttributes {
846
834
/**
@@ -920,10 +908,6 @@ export interface IBorderAttributes {
920
908
*/
921
909
size ?: number ;
922
910
923
- /**
924
-
925
-
926
- Fixed value: "border"
927
- */
928
- type ?: string ;
911
+ /** The type of this node (always "border") */
912
+ type ?: "border" ;
929
913
}
You can’t perform that action at this time.
0 commit comments