@@ -1641,7 +1641,7 @@ describe('MatStepper', () => {
16411641
16421642/** Asserts that keyboard interaction works correctly. */
16431643function assertCorrectKeyboardInteraction (
1644- fixture : ComponentFixture < any > ,
1644+ fixture : ComponentFixture < unknown > ,
16451645 stepHeaders : DebugElement [ ] ,
16461646 orientation : StepperOrientation ,
16471647) {
@@ -1742,7 +1742,7 @@ function assertCorrectKeyboardInteraction(
17421742
17431743/** Asserts that arrow key direction works correctly in RTL mode. */
17441744function assertArrowKeyInteractionInRtl (
1745- fixture : ComponentFixture < any > ,
1745+ fixture : ComponentFixture < unknown > ,
17461746 stepHeaders : DebugElement [ ] ,
17471747) {
17481748 const stepperComponent = fixture . debugElement . query ( By . directive ( MatStepper ) ) ! . componentInstance ;
@@ -1764,7 +1764,7 @@ function assertArrowKeyInteractionInRtl(
17641764
17651765/** Asserts that keyboard interaction works correctly when the user is pressing a modifier key. */
17661766function assertSelectKeyWithModifierInteraction (
1767- fixture : ComponentFixture < any > ,
1767+ fixture : ComponentFixture < unknown > ,
17681768 stepHeaders : DebugElement [ ] ,
17691769 orientation : StepperOrientation ,
17701770 selectionKey : number ,
@@ -1823,7 +1823,7 @@ function asyncValidator(minLength: number, validationTrigger: Subject<void>): As
18231823function createComponent < T > (
18241824 component : Type < T > ,
18251825 providers : Provider [ ] = [ ] ,
1826- imports : any [ ] = [ ] ,
1826+ imports : unknown [ ] = [ ] ,
18271827 encapsulation ?: ViewEncapsulation ,
18281828 declarations = [ component ] ,
18291829) : ComponentFixture < T > {
0 commit comments