UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines (7 loc) 281 B
/** * The XSLTApply function receives the XSLT file path, and applies it to a string variable or XML file variable. * @param {string} xmlString * @param {string} xsltString * @return string */ export declare const xsltApply: (xmlString: string, xsltString: string) => string;