UNPKG

docxtemplater

Version:

Generate docx, pptx, and xlsx from templates (Word, Powerpoint and Excel documents), from Node.js, the Browser and the command line

45 lines (40 loc) 1.08 kB
import { DXT } from "./js/docxtemplater"; interface ParserOptions { filters?: { [x: string]: (input: any, ...filters: any[]) => any }; csp?: boolean; cache?: any; literals?: { [x: string]: any }; isIdentifierStart?: (char: string) => boolean; isIdentifierContinue?: (char: string) => boolean; postEvaluate?: ( result: any, tag: string, scope: any, context: DXT.ParserContext ) => any; evaluateIdentifier?: ( tag: string, scope: any, scopeList: any[], context: DXT.ParserContext ) => any; setIdentifier?: ( tag: string, value: any, scope: any, scopeList: any[], context: DXT.ParserContext ) => any; } interface ExpressionParser extends DXT.Parser { compiled: any; getIdentifiers(): string[]; getObjectIdentifiers(): any; } type Parser = { (tag: string): ExpressionParser; filters: { [x: string]: (input: any, ...filters: any[]) => any }; configure: (options: ParserOptions) => (tag: string) => ExpressionParser; }; declare var expressionParser: Parser; export default expressionParser;