Hi
Can you include the type property on the interface WorkbookSheetRow?
Reasoning: it is useful to filter out rows based on their type and having this available just makes life easier.
https://www.telerik.com/kendo-angular-ui/components/excelexport/api/WorkbookSheetRow/
Code snippet below.
/** * The sheets rows configuration. */ export interface WorkbookSheetRow { /** * The cells of the every row. Each cell represents a cell from the final Excel document. */ cells?: WorkbookSheetRowCell[]; /** * The zero-based index of the row in the sheet. Defaults to the index of the object in the array. */ index?: number; /** * The row height in pixels. */ height?: number;
/**
*The type of row as string
*/
type?:string;
}
Thanks
Lynden