/** * appGenerator - generates XML for the application properties of an Excel file, including information about the number of worksheets and their names. * @param {number} sheetLength - The number of worksheets. * @param {string} sheetNameApp - The names of the worksheets. * @returns {string} - The XML string for the application properties. */ export function appGenerator(sheetLength: number, sheetNameApp: string) { return ( '\n' + '' + "Microsoft Excel" + "0" + "false" + "" + '' + "" + "Worksheets" + "" + "" + "" + sheetLength + "" + "" + "" + "" + "" + '' + " " + sheetNameApp + "" + "" + "" + "" + "false" + "false" + "false" + "16.0300" + "" ); }