* Emits an `ionChange` event. * * This API should be called for user committed changes. * This API should not be used for external value changes.
()
| 260 | * This API should not be used for external value changes. |
| 261 | */ |
| 262 | private emitValueChange() { |
| 263 | const { value } = this; |
| 264 | this.ionChange.emit({ value }); |
| 265 | } |
| 266 | |
| 267 | private getButtons(): HTMLIonSegmentButtonElement[] { |
| 268 | return Array.from(this.el.querySelectorAll('ion-segment-button')); |
no outgoing calls
no test coverage detected