()
| 265 | } |
| 266 | |
| 267 | private getButtons(): HTMLIonSegmentButtonElement[] { |
| 268 | return Array.from(this.el.querySelectorAll('ion-segment-button')); |
| 269 | } |
| 270 | |
| 271 | private get checked() { |
| 272 | return this.getButtons().find((button) => button.value === this.value); |
no test coverage detected