12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
/**
|
|
* Post render a template:
|
|
* - Execute "post" for blocks
|
|
* - Replace block content
|
|
*
|
|
* @param {TemplateEngine} engine
|
|
* @param {TemplateOutput} content
|
|
* @return {Promise<String>}
|
|
*/
|
|
declare function postRender(engine: any, output: any): any;
|
|
export default postRender;
|
|
//# sourceMappingURL=postRender.d.ts.map
|