interface OnTabClose {
    onTabClose(tab: INavigationBarTab<{
        [key: string]: any;
    }, {
        [key: string]: any;
    }>): boolean | Promise<boolean> | Observable<boolean>;
}

Methods

Methods

  • Parameters

    • tab: INavigationBarTab<{
          [key: string]: any;
      }, {
          [key: string]: any;
      }>

      the current tab model that is closing.

    Returns boolean | Promise<boolean> | Observable<boolean>