chore() normalize types in docs

This commit is contained in:
mhartington
2016-02-12 15:51:28 -05:00
parent 8b724a3bcb
commit 5941042a98
25 changed files with 124 additions and 124 deletions

View File

@ -57,12 +57,12 @@ import {isDefined} from '../../util/util';
export class SegmentButton {
/**
* @input {String} the value of the segment button. Required.
* @input {string} the value of the segment button. Required.
*/
@Input() value: string;
/**
* @output {Any} expression to evaluate when a segment button has been clicked
* @output {any} expression to evaluate when a segment button has been clicked
*/
@Output() select: EventEmitter<SegmentButton> = new EventEmitter();