@@ -384,6 +384,15 @@ declare type old_as_current_for_Interface_IThrottlingWarning = requireAssignable
384
384
*/
385
385
declare type current_as_old_for_Interface_IThrottlingWarning = requireAssignableTo < TypeOnly < current . IThrottlingWarning > , TypeOnly < old . IThrottlingWarning > >
386
386
387
+ /*
388
+ * Validate backward compatibility by using the current type in place of the old type.
389
+ * If this test starts failing, it indicates a change that is not backward compatible.
390
+ * To acknowledge the breaking change, add the following to package.json under
391
+ * typeValidation.broken:
392
+ * "Interface_Listenable": {"backCompat": false}
393
+ */
394
+ declare type current_as_old_for_Interface_Listenable = requireAssignableTo < TypeOnly < current . Listenable < never > > , TypeOnly < old . Listenable < never > > >
395
+
387
396
/*
388
397
* Validate forward compatibility by using the old type in place of the current type.
389
398
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -546,6 +555,42 @@ declare type old_as_current_for_TypeAlias_IEventTransformer = requireAssignableT
546
555
*/
547
556
declare type current_as_old_for_TypeAlias_IEventTransformer = requireAssignableTo < TypeOnly < current . IEventTransformer < never , never > > , TypeOnly < old . IEventTransformer < never , never > > >
548
557
558
+ /*
559
+ * Validate forward compatibility by using the old type in place of the current type.
560
+ * If this test starts failing, it indicates a change that is not forward compatible.
561
+ * To acknowledge the breaking change, add the following to package.json under
562
+ * typeValidation.broken:
563
+ * "TypeAlias_IsListener": {"forwardCompat": false}
564
+ */
565
+ declare type old_as_current_for_TypeAlias_IsListener = requireAssignableTo < TypeOnly < old . IsListener < never > > , TypeOnly < current . IsListener < never > > >
566
+
567
+ /*
568
+ * Validate backward compatibility by using the current type in place of the old type.
569
+ * If this test starts failing, it indicates a change that is not backward compatible.
570
+ * To acknowledge the breaking change, add the following to package.json under
571
+ * typeValidation.broken:
572
+ * "TypeAlias_IsListener": {"backCompat": false}
573
+ */
574
+ declare type current_as_old_for_TypeAlias_IsListener = requireAssignableTo < TypeOnly < current . IsListener < never > > , TypeOnly < old . IsListener < never > > >
575
+
576
+ /*
577
+ * Validate forward compatibility by using the old type in place of the current type.
578
+ * If this test starts failing, it indicates a change that is not forward compatible.
579
+ * To acknowledge the breaking change, add the following to package.json under
580
+ * typeValidation.broken:
581
+ * "TypeAlias_Listeners": {"forwardCompat": false}
582
+ */
583
+ declare type old_as_current_for_TypeAlias_Listeners = requireAssignableTo < TypeOnly < old . Listeners < never > > , TypeOnly < current . Listeners < never > > >
584
+
585
+ /*
586
+ * Validate backward compatibility by using the current type in place of the old type.
587
+ * If this test starts failing, it indicates a change that is not backward compatible.
588
+ * To acknowledge the breaking change, add the following to package.json under
589
+ * typeValidation.broken:
590
+ * "TypeAlias_Listeners": {"backCompat": false}
591
+ */
592
+ declare type current_as_old_for_TypeAlias_Listeners = requireAssignableTo < TypeOnly < current . Listeners < never > > , TypeOnly < old . Listeners < never > > >
593
+
549
594
/*
550
595
* Validate forward compatibility by using the old type in place of the current type.
551
596
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -564,6 +609,24 @@ declare type old_as_current_for_TypeAlias_LogLevel = requireAssignableTo<TypeOnl
564
609
*/
565
610
declare type current_as_old_for_TypeAlias_LogLevel = requireAssignableTo < TypeOnly < current . LogLevel > , TypeOnly < old . LogLevel > >
566
611
612
+ /*
613
+ * Validate forward compatibility by using the old type in place of the current type.
614
+ * If this test starts failing, it indicates a change that is not forward compatible.
615
+ * To acknowledge the breaking change, add the following to package.json under
616
+ * typeValidation.broken:
617
+ * "TypeAlias_Off": {"forwardCompat": false}
618
+ */
619
+ declare type old_as_current_for_TypeAlias_Off = requireAssignableTo < TypeOnly < old . Off > , TypeOnly < current . Off > >
620
+
621
+ /*
622
+ * Validate backward compatibility by using the current type in place of the old type.
623
+ * If this test starts failing, it indicates a change that is not backward compatible.
624
+ * To acknowledge the breaking change, add the following to package.json under
625
+ * typeValidation.broken:
626
+ * "TypeAlias_Off": {"backCompat": false}
627
+ */
628
+ declare type current_as_old_for_TypeAlias_Off = requireAssignableTo < TypeOnly < current . Off > , TypeOnly < old . Off > >
629
+
567
630
/*
568
631
* Validate forward compatibility by using the old type in place of the current type.
569
632
* If this test starts failing, it indicates a change that is not forward compatible.
0 commit comments