feat(angular): expose getSelected() (#17079)

fixes #17068
This commit is contained in:
Manu MA
2019-01-14 18:03:44 +01:00
committed by GitHub
parent 8789748334
commit 3c801dbe11
8 changed files with 52 additions and 39 deletions

View File

@ -4457,9 +4457,9 @@ export namespace Components {
/**
* Get the currently selected tab
*/
'getSelected': () => Promise<HTMLIonTabElement | undefined>;
'getSelected': () => Promise<string | undefined>;
/**
* Get the tab at the given index
* Get the tab element given the tab name
*/
'getTab': (tab: string | HTMLIonTabElement) => Promise<HTMLIonTabElement | undefined>;
/**