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

12 lines
387 B
TypeScript

/**
* Render a template
*
* @param {TemplateEngine} engine
* @param {string} filePath: absolute path for the loader
* @param {string} content
* @param {Object} context (optional)
* @return {Promise<TemplateOutput>}
*/
declare function renderTemplate(engine: any, filePath: any, content: any, context: any): any;
export default renderTemplate;
//# sourceMappingURL=render.d.ts.map