@@ -1640,7 +1640,7 @@ describe('MatStepper', () => {
1640
1640
1641
1641
/** Asserts that keyboard interaction works correctly. */
1642
1642
function assertCorrectKeyboardInteraction (
1643
- fixture : ComponentFixture < any > ,
1643
+ fixture : ComponentFixture < unknown > ,
1644
1644
stepHeaders : DebugElement [ ] ,
1645
1645
orientation : StepperOrientation ,
1646
1646
) {
@@ -1741,7 +1741,7 @@ function assertCorrectKeyboardInteraction(
1741
1741
1742
1742
/** Asserts that arrow key direction works correctly in RTL mode. */
1743
1743
function assertArrowKeyInteractionInRtl (
1744
- fixture : ComponentFixture < any > ,
1744
+ fixture : ComponentFixture < unknown > ,
1745
1745
stepHeaders : DebugElement [ ] ,
1746
1746
) {
1747
1747
const stepperComponent = fixture . debugElement . query ( By . directive ( MatStepper ) ) ! . componentInstance ;
@@ -1763,7 +1763,7 @@ function assertArrowKeyInteractionInRtl(
1763
1763
1764
1764
/** Asserts that keyboard interaction works correctly when the user is pressing a modifier key. */
1765
1765
function assertSelectKeyWithModifierInteraction (
1766
- fixture : ComponentFixture < any > ,
1766
+ fixture : ComponentFixture < unknown > ,
1767
1767
stepHeaders : DebugElement [ ] ,
1768
1768
orientation : StepperOrientation ,
1769
1769
selectionKey : number ,
@@ -1822,7 +1822,7 @@ function asyncValidator(minLength: number, validationTrigger: Subject<void>): As
1822
1822
function createComponent < T > (
1823
1823
component : Type < T > ,
1824
1824
providers : Provider [ ] = [ ] ,
1825
- imports : any [ ] = [ ] ,
1825
+ imports : unknown [ ] = [ ] ,
1826
1826
encapsulation ?: ViewEncapsulation ,
1827
1827
declarations = [ component ] ,
1828
1828
) : ComponentFixture < T > {
0 commit comments