2025-05-12 05:38:44 +09:00

11 lines
317 B
TypeScript

/**
* Render a template
*
* @param {TemplateEngine} engine
* @param {string} filePath
* @param {Object} context
* @return {Promise<TemplateOutput>}
*/
declare function renderTemplateFile(engine: any, filePath: any, context: any): any;
export default renderTemplateFile;
//# sourceMappingURL=renderFile.d.ts.map