* Converts a DataFrame to Excel file format. * @param options Configuration object. Supported options: * - `sheetName`: The sheet name to be written to. Defaults to `'Sheet1'`. * - `filePath`: The filePath to be written to. Defaults to `'./output.xlsx'`. Option is only available in N
(options?: ExcelOutputOptionsNode)
| 182 | * |
| 183 | */ |
| 184 | toExcel(options?: ExcelOutputOptionsNode): void { |
| 185 | return toExcelNode(this, options as ExcelOutputOptionsNode) |
| 186 | } |
| 187 | } |
nothing calls this directly
no outgoing calls
no test coverage detected