File

src/radio/radio-change.class.ts

Description

Used to emit changes performed on a Radio.

Index

Properties

Constructor

constructor(source: Radio, value: string)
Parameters :
Name Type Optional
source Radio No
value string No

Properties

source
source: Radio | null
Type : Radio | null

Contains the Radio that has been changed.

value
value: string
Type : string

The value of the Radio encompassed in the RadioChange class.

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;
	}
}

result-matching ""

    No results matching ""