UNPKG

generator-dotnetcore-angular2-starterkit

Version:
14 lines (12 loc) 327 B
import { Injectable } from '@angular/core'; import { <%=name%> } from './<%=nameLowerCase%>'; @Injectable() export class <%=name%>Service { <%=name%>Container: <%=name%>[] = [ { exampleVariable: "hello!" }]; get(): <%=name%>[] { return this.<%=name%>Container; } }