docxtemplater
Version:
Generate docx, pptx, and xlsx from templates (Word, Powerpoint and Excel documents), from Node.js, the Browser and the command line
20 lines (16 loc) • 561 B
TypeScript
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;
}
type Parser = {
(tag: string): DXT.Parser;
filters: { [x: string]: (input: any, ...filters: any[]) => any };
configure: (options: ParserOptions) => (tag: string) => DXT.Parser;
};
declare var angularParser: Parser;
export default angularParser;