File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -1682,12 +1682,19 @@ export interface WorkbookModel {
1682
1682
}
1683
1683
1684
1684
export class Workbook {
1685
+ category : string ;
1686
+ company : string ;
1685
1687
creator : string ;
1688
+ description : string ;
1689
+ keywords : string ;
1686
1690
lastModifiedBy : string ;
1687
1691
created : Date ;
1692
+ manager : string ;
1688
1693
modified : Date ;
1689
1694
lastPrinted : Date ;
1690
1695
properties : WorkbookProperties ;
1696
+ subject : string ;
1697
+ title : string ;
1691
1698
1692
1699
/**
1693
1700
* Workbook calculation Properties
Original file line number Diff line number Diff line change @@ -13,11 +13,18 @@ const CSV = require('../csv/csv');
13
13
14
14
class Workbook {
15
15
constructor ( ) {
16
+ this . category = '' ;
17
+ this . company = '' ;
16
18
this . created = new Date ( ) ;
19
+ this . description = '' ;
20
+ this . keywords = '' ;
21
+ this . manager = '' ;
17
22
this . modified = this . created ;
18
23
this . properties = { } ;
19
24
this . calcProperties = { } ;
20
25
this . _worksheets = [ ] ;
26
+ this . subject = '' ;
27
+ this . title = '' ;
21
28
this . views = [ ] ;
22
29
this . media = [ ] ;
23
30
this . _definedNames = new DefinedNames ( ) ;
You can’t perform that action at this time.
0 commit comments