src/radio/radio-change.class.ts
Used to emit changes performed on a Radio
.
Properties |
constructor(source: Radio, value: string)
|
Defined in src/radio/radio-change.class.ts:14
|
source |
source:
|
Type : Radio | null
|
Defined in src/radio/radio-change.class.ts:10
|
Contains the |
value |
value:
|
Type : string
|
Defined in src/radio/radio-change.class.ts:14
|
The value of the |
import { Radio } from "./radio.component";
/**
* Used to emit changes performed on a `Radio`.
*/
export class RadioChange {
/**
* Contains the `Radio` that has been changed.
*/
source: Radio | null;
/**
* The value of the `Radio` encompassed in the `RadioChange` class.
*/
value: string;
constructor(source: Radio, value: string) {
this.source = source;
this.value = value;
}
}