(selectedTab: HTMLIonTabElement | undefined)
| 196 | } |
| 197 | |
| 198 | private shouldSwitch(selectedTab: HTMLIonTabElement | undefined): selectedTab is HTMLIonTabElement { |
| 199 | const leavingTab = this.selectedTab; |
| 200 | return selectedTab !== undefined && selectedTab !== leavingTab && !this.transitioning; |
| 201 | } |
| 202 | |
| 203 | private get tabs() { |
| 204 | return Array.from(this.el.querySelectorAll('ion-tab')); |
no outgoing calls
no test coverage detected