Import tabs.ts some pages

how import tabs for use in some pages

pages/tabs.html

pages/tabs.ts
import { Component } from ‘@angular/core’;
import { IonicPage } from “ionic-angular”;

@IonicPage(
{
name: ‘TabsPage’
}
)
@Component({
templateUrl: ‘tabs.html’
})
export class TabsPage {
// this tells the tabs component which Pages
// should be each tab’s root Page
tab1Root = ‘LoginPage’;
tab2Root = ‘AccountPage’;
tab3Root = ‘ContactPage’;

constructor()
{
}

}
pages/tabs.scss
blank or empty

pages/tabs.module.ts
import { NgModule } from ‘@angular/core’;
import { IonicPageModule } from ‘ionic-angular’;
import { TabsPage } from ‘./tabs’;

@NgModule({
declarations: [
TabsPage,
],
imports: [
IonicPageModule.forChild(TabsPage),
],
exports: [
TabsPage
]
})

export class TabsPageModule {

}

If you’re using IonicPage as you are, the answer to this question is “you don’t”. If, for example, you wish to navigate to this TabsPage from somewhere else in your app, you simply pass its string name “TabsPage”.

i need import tabs.ts to use in account.ts and more some pages

Not if you’re using IonicPage you don’t.

how i can put tabs in same pages?