| 2 | import createTemplateEngine from "./output/website/createTemplateEngine"; |
| 3 | // TODO: use this interface for building generator website/ebook |
| 4 | export interface BuildGenerator { |
| 5 | name: string; |
| 6 | State: GeneratorState; |
| 7 | Options: any; |
| 8 | onInit: Function; |
| 9 | onFinish: Function; |
| 10 | onPage: Function; |
| 11 | onAsset: Function; |
| 12 | createTemplateEngine: typeof createTemplateEngine; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected