diff --git a/ionic/components/segment/segment.ts b/ionic/components/segment/segment.ts index 5c4c6f2d91..43bffdb34d 100644 --- a/ionic/components/segment/segment.ts +++ b/ionic/components/segment/segment.ts @@ -38,8 +38,6 @@ import {isDefined} from '../../util/util'; * * ``` * - * @property {string} [value] - the value of the segment button. Required. - * @property {Any} (select) - expression to evaluate when a segment button has been clicked * * @demo /docs/v2/demos/segment/ * @see {@link /docs/v2/components#segment Segment Component Docs} @@ -59,12 +57,12 @@ import {isDefined} from '../../util/util'; export class SegmentButton { /** - * @private + * @input {String} the value of the segment button. Required. */ @Input() value: string; /** - * @private + * @output {Any} expression to evaluate when a segment button has been clicked */ @Output() select: EventEmitter = new EventEmitter(); @@ -138,7 +136,6 @@ export class SegmentButton { * * ``` * - * @property {Any} (change) - expression to evaluate when a segment button has been changed * * @demo /docs/v2/demos/segment/ * @see {@link /docs/v2/components#segment Segment Component Docs} @@ -156,7 +153,7 @@ export class Segment { /** - * @private + * @output {Any} expression to evaluate when a segment button has been changed */ @Output() change: EventEmitter = new EventEmitter();