## 🐛 Bug Report Upgrading to 4.1.0 results in TypeScript compilation errors for previously working code like: `sheet.addRows(rows);` It looks like the problem was introduced in [Added insert rows functionality with new style inherit options](https://github.com/exceljs/exceljs/pull/1324). The new TypeScript definition is: `addRows(rows: any[], styleOption: string): void;` Shouldn't styleOption be optional with a default value?