exceljs / exceljs

Excel Workbook Manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Worksheet State does not exist in index.d.ts

calincirstea opened this issue · comments

Due to this reason it is not possible to make visible newly added worksheets.
Following gives errors when used in Agular 7:

  1.        var worksheet = workbook.addWorksheet('Title');
          worksheet.state='visible'
    
  2. var worksheet = workbook.addWorksheet('Title',{ state: 'visible' });