docs(radio): update inputs/outputs

This commit is contained in:
mhartington
2016-02-10 14:25:16 -05:00
parent 12c2709559
commit 3c5ba4d67e
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ export class RadioButton {
id: string;
/**
* @private
* @output {Any} expression to be evaluated when clicked
*/
@Output() select: EventEmitter<RadioButton> = new EventEmitter();

View File

@@ -76,7 +76,7 @@ export class RadioGroup {
value;
/**
* @private
* @output {Any} expression to be evaluated when selection has been changed
*/
@Output() change: EventEmitter<RadioGroup> = new EventEmitter();