@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
17 lines (13 loc) • 443 B
text/typescript
import { Component, OnInit, Input } from '@angular/core';
import { <%-SchemaName%>ListViewComponent } from './<%-schemaName%>-list-view.component';
({
<%- include(`/widgets/list-view/component.template.custom.ts`)%>
})
export class <%-SchemaName%><%-ComponentClassName%>Component extends <%-SchemaName%>ListViewComponent implements OnInit {
constructor() {
super();
}
override ngOnInit() {
super.ngOnInit();
}
}