(filePath: string)
| 384 | } |
| 385 | |
| 386 | async preFileWrite(filePath: string): Promise<CommonTemplateValues> { |
| 387 | // allow subclasses to do something before writing a file |
| 388 | return this.getTemplateValues() |
| 389 | } |
| 390 | |
| 391 | async postFileWrite(filePath: string, templateValues: CommonTemplateValues): Promise<void> { |
| 392 | // allow subclasses to do something after writing a file |
nothing calls this directly
no test coverage detected