(templatePath: string)
| 38 | } |
| 39 | |
| 40 | static init(templatePath: string): TemplateFile { |
| 41 | return new TemplateFile(templatePath); |
| 42 | } |
| 43 | |
| 44 | withReplacements(replacements: Replacements): TemplateFile { |
| 45 | return new TemplateFile(this.templatePath, this.outputPath, replacements); |
no outgoing calls
no test coverage detected