11 lines
372 B
TypeScript
11 lines
372 B
TypeScript
import TemplateEngine from "../models/templateEngine";
|
|
/**
|
|
Create template engine for an output.
|
|
It adds default filters/blocks, then add the ones from plugins
|
|
|
|
@param {Output} output
|
|
@return {TemplateEngine}
|
|
*/
|
|
declare function createTemplateEngine(output: any): TemplateEngine;
|
|
export default createTemplateEngine;
|
|
//# sourceMappingURL=createTemplateEngine.d.ts.map
|