We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abd0eb commit 2240f52Copy full SHA for 2240f52
src/material/radio/radio.ts
@@ -49,12 +49,12 @@ import {Subscription} from 'rxjs';
49
import {_CdkPrivateStyleLoader} from '@angular/cdk/private';
50
51
/** Change event object emitted by radio button and radio group. */
52
-export class MatRadioChange {
+export class MatRadioChange<T = any> {
53
constructor(
54
/** The radio button that emits the change event. */
55
public source: MatRadioButton,
56
/** The value of the radio button. */
57
- public value: any,
+ public value: T,
58
) {}
59
}
60
0 commit comments