import handlebars from "handlebars"; import fs from "fs"; /** * Information for processing a template file into the output file */ export interface Template { inputFile: string; outputFile: string; context: Record; data?: string; } /** * Process input file and produce file at given output location */ export default async (_template: Template): Promise