I'm a novice on this world of Ionic2
/ Cordova
.
I noticed that some imports have the At: @
symbol in the import directives and others don't have it. For example:
import { NavController } from 'ionic-angular';
import { DomSanitizer } from '@angular/platform-browser';
I searched a lot on Google what's the meaning of this symbol and what happens if I use it or not but didn't find a clear answer about this.
Then I have this question:
What's the meaning of the
At: @
symbol on import directives?