@@ -31,18 +31,8 @@ declare type old_as_current_for_Class_BaseSegment = requireAssignableTo<TypeOnly
31
31
* typeValidation.broken:
32
32
* "Class_BaseSegment": {"backCompat": false}
33
33
*/
34
- // @ts -expect-error compatibility expected to be broken
35
34
declare type current_as_old_for_Class_BaseSegment = requireAssignableTo < TypeOnly < current . BaseSegment > , TypeOnly < old . BaseSegment > >
36
35
37
- /*
38
- * Validate backward compatibility by using the current type in place of the old type.
39
- * If this test starts failing, it indicates a change that is not backward compatible.
40
- * To acknowledge the breaking change, add the following to package.json under
41
- * typeValidation.broken:
42
- * "Class_LocalReferenceCollection": {"backCompat": false}
43
- */
44
- declare type current_as_old_for_Class_LocalReferenceCollection = requireAssignableTo < TypeOnly < current . LocalReferenceCollection > , TypeOnly < old . LocalReferenceCollection > >
45
-
46
36
/*
47
37
* Validate forward compatibility by using the old type in place of the current type.
48
38
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -59,7 +49,6 @@ declare type old_as_current_for_Class_Marker = requireAssignableTo<TypeOnly<old.
59
49
* typeValidation.broken:
60
50
* "Class_Marker": {"backCompat": false}
61
51
*/
62
- // @ts -expect-error compatibility expected to be broken
63
52
declare type current_as_old_for_Class_Marker = requireAssignableTo < TypeOnly < current . Marker > , TypeOnly < old . Marker > >
64
53
65
54
/*
@@ -78,7 +67,6 @@ declare type old_as_current_for_Class_TextSegment = requireAssignableTo<TypeOnly
78
67
* typeValidation.broken:
79
68
* "Class_TextSegment": {"backCompat": false}
80
69
*/
81
- // @ts -expect-error compatibility expected to be broken
82
70
declare type current_as_old_for_Class_TextSegment = requireAssignableTo < TypeOnly < current . TextSegment > , TypeOnly < old . TextSegment > >
83
71
84
72
/*
@@ -97,7 +85,6 @@ declare type old_as_current_for_Class_TrackingGroup = requireAssignableTo<TypeOn
97
85
* typeValidation.broken:
98
86
* "Class_TrackingGroup": {"backCompat": false}
99
87
*/
100
- // @ts -expect-error compatibility expected to be broken
101
88
declare type current_as_old_for_Class_TrackingGroup = requireAssignableTo < TypeOnly < current . TrackingGroup > , TypeOnly < old . TrackingGroup > >
102
89
103
90
/*
@@ -125,26 +112,15 @@ declare type current_as_old_for_Class_TrackingGroupCollection = requireAssignabl
125
112
* typeValidation.broken:
126
113
* "ClassStatics_BaseSegment": {"backCompat": false}
127
114
*/
128
- // @ts -expect-error compatibility expected to be broken
129
115
declare type current_as_old_for_ClassStatics_BaseSegment = requireAssignableTo < TypeOnly < typeof current . BaseSegment > , TypeOnly < typeof old . BaseSegment > >
130
116
131
- /*
132
- * Validate backward compatibility by using the current type in place of the old type.
133
- * If this test starts failing, it indicates a change that is not backward compatible.
134
- * To acknowledge the breaking change, add the following to package.json under
135
- * typeValidation.broken:
136
- * "ClassStatics_LocalReferenceCollection": {"backCompat": false}
137
- */
138
- declare type current_as_old_for_ClassStatics_LocalReferenceCollection = requireAssignableTo < TypeOnly < typeof current . LocalReferenceCollection > , TypeOnly < typeof old . LocalReferenceCollection > >
139
-
140
117
/*
141
118
* Validate backward compatibility by using the current type in place of the old type.
142
119
* If this test starts failing, it indicates a change that is not backward compatible.
143
120
* To acknowledge the breaking change, add the following to package.json under
144
121
* typeValidation.broken:
145
122
* "ClassStatics_Marker": {"backCompat": false}
146
123
*/
147
- // @ts -expect-error compatibility expected to be broken
148
124
declare type current_as_old_for_ClassStatics_Marker = requireAssignableTo < TypeOnly < typeof current . Marker > , TypeOnly < typeof old . Marker > >
149
125
150
126
/*
@@ -154,7 +130,6 @@ declare type current_as_old_for_ClassStatics_Marker = requireAssignableTo<TypeOn
154
130
* typeValidation.broken:
155
131
* "ClassStatics_TextSegment": {"backCompat": false}
156
132
*/
157
- // @ts -expect-error compatibility expected to be broken
158
133
declare type current_as_old_for_ClassStatics_TextSegment = requireAssignableTo < TypeOnly < typeof current . TextSegment > , TypeOnly < typeof old . TextSegment > >
159
134
160
135
/*
@@ -164,7 +139,6 @@ declare type current_as_old_for_ClassStatics_TextSegment = requireAssignableTo<T
164
139
* typeValidation.broken:
165
140
* "ClassStatics_TrackingGroup": {"backCompat": false}
166
141
*/
167
- // @ts -expect-error compatibility expected to be broken
168
142
declare type current_as_old_for_ClassStatics_TrackingGroup = requireAssignableTo < TypeOnly < typeof current . TrackingGroup > , TypeOnly < typeof old . TrackingGroup > >
169
143
170
144
/*
@@ -401,26 +375,6 @@ declare type old_as_current_for_Interface_IMarkerDef = requireAssignableTo<TypeO
401
375
*/
402
376
declare type current_as_old_for_Interface_IMarkerDef = requireAssignableTo < TypeOnly < current . IMarkerDef > , TypeOnly < old . IMarkerDef > >
403
377
404
- /*
405
- * Validate forward compatibility by using the old type in place of the current type.
406
- * If this test starts failing, it indicates a change that is not forward compatible.
407
- * To acknowledge the breaking change, add the following to package.json under
408
- * typeValidation.broken:
409
- * "Interface_IMergeNodeCommon": {"forwardCompat": false}
410
- */
411
- // @ts -expect-error compatibility expected to be broken
412
- declare type old_as_current_for_Interface_IMergeNodeCommon = requireAssignableTo < TypeOnly < old . IMergeNodeCommon > , TypeOnly < current . IMergeNodeCommon > >
413
-
414
- /*
415
- * Validate backward compatibility by using the current type in place of the old type.
416
- * If this test starts failing, it indicates a change that is not backward compatible.
417
- * To acknowledge the breaking change, add the following to package.json under
418
- * typeValidation.broken:
419
- * "Interface_IMergeNodeCommon": {"backCompat": false}
420
- */
421
- // @ts -expect-error compatibility expected to be broken
422
- declare type current_as_old_for_Interface_IMergeNodeCommon = requireAssignableTo < TypeOnly < current . IMergeNodeCommon > , TypeOnly < old . IMergeNodeCommon > >
423
-
424
378
/*
425
379
* Validate forward compatibility by using the old type in place of the current type.
426
380
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -491,7 +445,6 @@ declare type old_as_current_for_Interface_IMergeTreeDeltaCallbackArgs = requireA
491
445
* typeValidation.broken:
492
446
* "Interface_IMergeTreeDeltaCallbackArgs": {"backCompat": false}
493
447
*/
494
- // @ts -expect-error compatibility expected to be broken
495
448
declare type current_as_old_for_Interface_IMergeTreeDeltaCallbackArgs = requireAssignableTo < TypeOnly < current . IMergeTreeDeltaCallbackArgs > , TypeOnly < old . IMergeTreeDeltaCallbackArgs > >
496
449
497
450
/*
@@ -564,7 +517,6 @@ declare type old_as_current_for_Interface_IMergeTreeMaintenanceCallbackArgs = re
564
517
* typeValidation.broken:
565
518
* "Interface_IMergeTreeMaintenanceCallbackArgs": {"backCompat": false}
566
519
*/
567
- // @ts -expect-error compatibility expected to be broken
568
520
declare type current_as_old_for_Interface_IMergeTreeMaintenanceCallbackArgs = requireAssignableTo < TypeOnly < current . IMergeTreeMaintenanceCallbackArgs > , TypeOnly < old . IMergeTreeMaintenanceCallbackArgs > >
569
521
570
522
/*
@@ -655,29 +607,8 @@ declare type old_as_current_for_Interface_IMergeTreeSegmentDelta = requireAssign
655
607
* typeValidation.broken:
656
608
* "Interface_IMergeTreeSegmentDelta": {"backCompat": false}
657
609
*/
658
- // @ts -expect-error compatibility expected to be broken
659
610
declare type current_as_old_for_Interface_IMergeTreeSegmentDelta = requireAssignableTo < TypeOnly < current . IMergeTreeSegmentDelta > , TypeOnly < old . IMergeTreeSegmentDelta > >
660
611
661
- /*
662
- * Validate forward compatibility by using the old type in place of the current type.
663
- * If this test starts failing, it indicates a change that is not forward compatible.
664
- * To acknowledge the breaking change, add the following to package.json under
665
- * typeValidation.broken:
666
- * "Interface_IMoveInfo": {"forwardCompat": false}
667
- */
668
- // @ts -expect-error compatibility expected to be broken
669
- declare type old_as_current_for_Interface_IMoveInfo = requireAssignableTo < TypeOnly < old . IMoveInfo > , TypeOnly < current . IMoveInfo > >
670
-
671
- /*
672
- * Validate backward compatibility by using the current type in place of the old type.
673
- * If this test starts failing, it indicates a change that is not backward compatible.
674
- * To acknowledge the breaking change, add the following to package.json under
675
- * typeValidation.broken:
676
- * "Interface_IMoveInfo": {"backCompat": false}
677
- */
678
- // @ts -expect-error compatibility expected to be broken
679
- declare type current_as_old_for_Interface_IMoveInfo = requireAssignableTo < TypeOnly < current . IMoveInfo > , TypeOnly < old . IMoveInfo > >
680
-
681
612
/*
682
613
* Validate forward compatibility by using the old type in place of the current type.
683
614
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -714,26 +645,6 @@ declare type old_as_current_for_Interface_IRelativePosition = requireAssignableT
714
645
*/
715
646
declare type current_as_old_for_Interface_IRelativePosition = requireAssignableTo < TypeOnly < current . IRelativePosition > , TypeOnly < old . IRelativePosition > >
716
647
717
- /*
718
- * Validate forward compatibility by using the old type in place of the current type.
719
- * If this test starts failing, it indicates a change that is not forward compatible.
720
- * To acknowledge the breaking change, add the following to package.json under
721
- * typeValidation.broken:
722
- * "Interface_IRemovalInfo": {"forwardCompat": false}
723
- */
724
- // @ts -expect-error compatibility expected to be broken
725
- declare type old_as_current_for_Interface_IRemovalInfo = requireAssignableTo < TypeOnly < old . IRemovalInfo > , TypeOnly < current . IRemovalInfo > >
726
-
727
- /*
728
- * Validate backward compatibility by using the current type in place of the old type.
729
- * If this test starts failing, it indicates a change that is not backward compatible.
730
- * To acknowledge the breaking change, add the following to package.json under
731
- * typeValidation.broken:
732
- * "Interface_IRemovalInfo": {"backCompat": false}
733
- */
734
- // @ts -expect-error compatibility expected to be broken
735
- declare type current_as_old_for_Interface_IRemovalInfo = requireAssignableTo < TypeOnly < current . IRemovalInfo > , TypeOnly < old . IRemovalInfo > >
736
-
737
648
/*
738
649
* Validate forward compatibility by using the old type in place of the current type.
739
650
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -750,7 +661,6 @@ declare type old_as_current_for_Interface_ISegment = requireAssignableTo<TypeOnl
750
661
* typeValidation.broken:
751
662
* "Interface_ISegment": {"backCompat": false}
752
663
*/
753
- // @ts -expect-error compatibility expected to be broken
754
664
declare type current_as_old_for_Interface_ISegment = requireAssignableTo < TypeOnly < current . ISegment > , TypeOnly < old . ISegment > >
755
665
756
666
/*
@@ -787,7 +697,6 @@ declare type old_as_current_for_Interface_ITrackingGroup = requireAssignableTo<T
787
697
* typeValidation.broken:
788
698
* "Interface_ITrackingGroup": {"backCompat": false}
789
699
*/
790
- // @ts -expect-error compatibility expected to be broken
791
700
declare type current_as_old_for_Interface_ITrackingGroup = requireAssignableTo < TypeOnly < current . ITrackingGroup > , TypeOnly < old . ITrackingGroup > >
792
701
793
702
/*
@@ -977,7 +886,6 @@ declare type old_as_current_for_TypeAlias_MergeTreeDeltaRevertible = requireAssi
977
886
* typeValidation.broken:
978
887
* "TypeAlias_MergeTreeDeltaRevertible": {"backCompat": false}
979
888
*/
980
- // @ts -expect-error compatibility expected to be broken
981
889
declare type current_as_old_for_TypeAlias_MergeTreeDeltaRevertible = requireAssignableTo < TypeOnly < current . MergeTreeDeltaRevertible > , TypeOnly < old . MergeTreeDeltaRevertible > >
982
890
983
891
/*
@@ -1086,7 +994,6 @@ declare type old_as_current_for_TypeAlias_Trackable = requireAssignableTo<TypeOn
1086
994
* typeValidation.broken:
1087
995
* "TypeAlias_Trackable": {"backCompat": false}
1088
996
*/
1089
- // @ts -expect-error compatibility expected to be broken
1090
997
declare type current_as_old_for_TypeAlias_Trackable = requireAssignableTo < TypeOnly < current . Trackable > , TypeOnly < old . Trackable > >
1091
998
1092
999
/*
0 commit comments