UNPKG

240 BPlain TextView Raw
1class FinalModule {
2
3 constructor(public name:string, public deps:string[]){}
4
5 public getDeps(prefix:string, suffix:string):string[] {
6 return this.deps.map((dep:string):string => prefix + dep + suffix);
7 }
8
9}
10
11export = FinalModule;