How to import two classes in page.module.ts?

i’am using lazy loadig in my project. i have two classes in my page.ts (class1, class2) . My problem is how can i import and declare those two classes in my page.module.ts?? Can any one please fix this code please ?

import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { Class1, Class2 } from './home';

@NgModule({
declarations: [
    Class1, Class2
],
imports: [
    IonicPageModule.forChild(Class1),
   //IonicPageModule.forChild(Class2),
],
exports: [
    Class1, Class2
]
})
export class Class1Module {}
//export class Class2Module {}

Why are you doing this instead of having a module for each page?

The two classes are exported in the same page.ts file. It’s an old ionic project and i’am not supposed to add or creat new pages !!!
Any idea on how to solve it ?

That flies directly in the face of the very first rule in the Angular style guide. Separate them.

You’re not adding new pages - you’re simply fixing badly-organized code.