Skip to content

Commit

Permalink
Merge pull request #11877 from TLounsbury/patch-1
Browse files Browse the repository at this point in the history
Update inputswitch.ts
  • Loading branch information
cetincakiroglu committed Sep 9, 2022
2 parents 7d861a5 + f8c6b50 commit b393b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/inputswitch/inputswitch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class InputSwitch implements ControlValueAccessor {

@Input() ariaLabelledBy: string;

@Output() onChange: EventEmitter<any> = new EventEmitter();
@Output() onChange: EventEmitter<{ originalEvent: Event; checked: boolean }> = new EventEmitter();

modelValue: any = false;

Expand Down

0 comments on commit b393b57

Please sign in to comment.