docs(): hide methods not requiring docs

This commit is contained in:
Adam Bradley
2016-01-27 14:27:33 -06:00
parent 4435451694
commit dbc681fb7c
11 changed files with 108 additions and 15 deletions

View File

@ -138,8 +138,6 @@ export class SegmentButton {
})
export class Segment {
value: string;
onChange = (_) => {};
onTouched = (_) => {};
@Output() change: EventEmitter<SegmentButton> = new EventEmitter();
@ -183,6 +181,14 @@ export class Segment {
}
}
/**
* @private
*/
onChange = (_) => {};
/**
* @private
*/
onTouched = (_) => {};
/**
* @private