I am reading an article about lazy loading in Angular.
Can anyone explain to me the purpose of "#LazyModule" in the below route?
const routes: Routes = [ { path: 'lazy', loadChildren: './lazy.module#LazyModule'} ];
original article: https://angularfirebase.com/lessons/how-to-lazy-load-components-in-angular-4-in-three-steps/