Property network dose not exist on type

Hi all ! Could anyone suggest please … after update to Ionic3, property network become unavailable … I use such function in my app …

 public static isOnline():boolean {
    return this.network.type !== Connection.NONE;
  }

I import

import { Network } from '@ionic-native/network';

And add to constructor …

private network: Network,

Did you add it to your providers in app.module as well?

luukschoen, yes of course …

what error are you receiving? Because not available could mean so many things…

image

Did you remove the old ionic native module and then installed network plugin separate? Because it seems to be missing the right typing…

Did you actually run the code and receive an error or is this just an IDE output?

I supposed the latter, sometimes I also have these IDE errors when installing something into my project. But good question :smiley:

luukschoen,Sujan12, thanks … I changed function and solved problem …