File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1184,6 +1184,14 @@ export interface ConditionalFormattingOptions {
11841184 rules : ConditionalFormattingRule [ ] ;
11851185}
11861186
1187+ export interface AddPivotTableOptions {
1188+ sourceSheet : Worksheet ;
1189+ rows : string [ ] ;
1190+ columns : string [ ] ;
1191+ values : string [ ] ;
1192+ metric : 'sum' ;
1193+ }
1194+
11871195export interface Worksheet {
11881196 readonly id : number ;
11891197 name : string ;
@@ -1508,14 +1516,6 @@ export interface Worksheet {
15081516 addPivotTable ( options : AddPivotTableOptions ) : void ;
15091517}
15101518
1511- interface AddPivotTableOptions {
1512- sourceSheet : Worksheet ;
1513- rows : string [ ] ;
1514- columns : string [ ] ;
1515- values : string [ ] ;
1516- metric : 'sum' ;
1517- }
1518-
15191519export interface CalculationProperties {
15201520 /**
15211521 * Whether the application shall perform a full recalculation when the workbook is opened
You can’t perform that action at this time.
0 commit comments