Skip to content

Commit

Permalink
refactor(tabs): update types
Browse files Browse the repository at this point in the history
  • Loading branch information
thetaPC committed Aug 22, 2024
1 parent 622cb07 commit 1f8a4e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/angular/common/src/directives/navigation/tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
Output,
ViewChild,
AfterViewInit,
QueryList,
} from '@angular/core';

import { NavController } from '../../providers/nav-controller';
Expand All @@ -25,8 +26,8 @@ export abstract class IonTabs implements AfterViewInit, AfterContentInit, AfterC
*/
abstract outlet: any;
abstract tabBar: any;
abstract tabBars: any;
abstract tabs: any;
abstract tabBars: QueryList<any>;
abstract tabs: QueryList<any>;

@ViewChild('tabsInner', { read: ElementRef, static: true }) tabsInner: ElementRef<HTMLDivElement>;

Expand Down

0 comments on commit 1f8a4e3

Please sign in to comment.