UNPKG

@hicoder/angular-cli

Version:

Angular UI componenets and service generator. It works with the mean-rest-express package to generate the end to end web application. The input to this generator is the Mongoose schema defined for the express application. mean-rest-express exposes the Res

24 lines (22 loc) 611 B
import { NgModule } from '@angular/core'; import { <%-ModuleName%>RoutingModule } from './<%-moduleName%>-routing.module'; import { <%-ModuleName%>CoreModule } from './<%-moduleName%>.core.module'; import { <%-ModuleName%>CustModule } from '../<%-moduleName%>-cust/<%-moduleName%>.cust.module' @NgModule({ imports: [ <%-ModuleName%>RoutingModule, <%-ModuleName%>CoreModule, <%-ModuleName%>CustModule, ], declarations: [ ], exports: [ <%-ModuleName%>CoreModule, <%-ModuleName%>CustModule, ], providers: [ ], entryComponents: [ ] }) export class <%-ModuleName%>Module { }