Skip to content

Commit ae3fcd0

Browse files
update index.d.ts
1 parent 34502ef commit ae3fcd0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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+
11871195
export 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-
15191519
export interface CalculationProperties {
15201520
/**
15211521
* Whether the application shall perform a full recalculation when the workbook is opened

0 commit comments

Comments
 (0)