Typescript Error Ionic 2

Question:

Seguinte Erro:

Type ‘typeof LoginPage’ is not assignable to type ‘typeof HomePage’.

Código:

import { LoginPage } from '../pages/login/login';

if(user) {
  this.rootPage = HomePage;
} else {
  this.rootPage = LoginPage; // Erro nessa linha
}

Answer:

Just fix the variable declaration:

import { LoginPage } from '../pages/login/login';

let rootPage:Any;

if(user) {
  this.rootPage = HomePage;
} else {
  this.rootPage = LoginPage; // Erro nessa linha
}
Scroll to Top