Skip to content

Commit c16a360

Browse files
devversionjelbourn
authored andcommitted
chore(dgeni): fix missing parameter type warning (#9545)
* Fixes a Dgeni missing parameter type warning (`Missing parameter type information (enabled = true) in cdk/a11y/list-key-manager.ts`).
1 parent e5c8880 commit c16a360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/a11y/list-key-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class ListKeyManager<T extends ListKeyManagerOption> {
7474
* Configures whether the key manager should be able to move the selection vertically.
7575
* @param enabled Whether vertical selection should be enabled.
7676
*/
77-
withVerticalOrientation(enabled = true): this {
77+
withVerticalOrientation(enabled: boolean = true): this {
7878
this._vertical = enabled;
7979
return this;
8080
}

0 commit comments

Comments
 (0)