forked from exceljs/exceljs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
1384 lines (1153 loc) · 30 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
declare interface Buffer extends ArrayBuffer { }
declare interface Stream { }
declare interface Writable { }
export const enum RelationshipType {
None = 0,
OfficeDocument = 1,
Worksheet = 2,
CalcChain = 3,
SharedStrings = 4,
Styles = 5,
Theme = 6,
Hyperlink = 7
}
export const enum DocumentType {
Xlsx = 1
}
export const enum PaperSize {
Legal = 5,
Executive = 7,
A4 = 9,
A5 = 11,
B5 = 13,
Envelope_10 = 20,
Envelope_DL = 27,
Envelope_C5 = 28,
Envelope_B5 = 34,
Envelope_Monarch = 37,
Double_Japan_Postcard_Rotated = 82,
K16_197x273_mm = 119,
}
export interface WorksheetViewCommon {
/**
* Sets the worksheet view's orientation to right-to-left, `false` by default
*/
rightToLeft: boolean;
/**
* The currently selected cell
*/
activeCell: string;
/**
* Shows or hides the ruler in Page Layout, `true` by default
*/
showRuler: boolean;
/**
* Shows or hides the row and column headers (e.g. A1, B1 at the top and 1,2,3 on the left,
* `true` by default
*/
showRowColHeaders: boolean;
/**
* Shows or hides the gridlines (shown for cells where borders have not been defined),
* `true` by default
*/
showGridLines: boolean;
/**
* Percentage zoom to use for the view, `100` by default
*/
zoomScale: number;
/**
* Normal zoom for the view, `100` by default
*/
zoomScaleNormal: number;
}
export interface WorksheetViewNormal {
/**
* Controls the view state
*/
state: 'normal';
/**
* Presentation style
*/
style: 'pageBreakPreview' | 'pageLayout';
}
export interface WorksheetViewFrozen {
/**
* Where a number of rows and columns to the top and left are frozen in place.
* Only the bottom left section will scroll
*/
state: 'frozen';
/**
* Presentation style
*/
style?: 'pageBreakPreview';
/**
* How many columns to freeze. To freeze rows only, set this to 0 or undefined
*/
xSplit?: number;
/**
* How many rows to freeze. To freeze columns only, set this to 0 or undefined
*/
ySplit?: number;
/**
* Which cell will be top-left in the bottom-right pane. Note: cannot be a frozen cell.
* Defaults to first unfrozen cell
*/
topLeftCell?: string;
}
export interface WorksheetViewSplit {
/**
* Where the view is split into 4 sections, each semi-independently scrollable.
*/
state: 'split';
/**
* Presentation style
*/
style?: 'pageBreakPreview' | 'pageLayout';
/**
* How many points from the left to place the splitter.
* To split vertically, set this to 0 or undefined
*/
xSplit?: number;
/**
* How many points from the top to place the splitter.
* To split horizontally, set this to 0 or undefined
*/
ySplit?: number;
/**
* Which cell will be top-left in the bottom-right pane
*/
topLeftCell?: string;
/**
* Which pane will be active
*/
activePane?: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight';
}
export type WorksheetView =
& WorksheetViewCommon
& (WorksheetViewNormal | WorksheetViewFrozen | WorksheetViewSplit);
export interface WorkbookView {
x: number;
y: number;
width: number;
height: number;
firstSheet: number;
activeTab: number;
visibility: string;
}
export type FillPatterns =
| 'none' | 'solid'
| 'darkVertical' | 'darkHorizontal' | 'darkGrid' | 'darkTrellis' | 'darkDown' | 'darkUp'
| 'lightVertical' | 'lightHorizontal' | 'lightGrid' | 'lightTrellis' | 'lightDown' | 'lightUp'
| 'darkGray' | 'mediumGray' | 'lightGray' | 'gray125' | 'gray0625';
export interface FillPattern {
type: 'pattern';
pattern: FillPatterns;
fgColor: Partial<Color>;
bgColor?: Partial<Color>;
}
export interface GradientStop {
position: number;
color: Partial<Color>;
}
export interface FillGradientAngle {
type: 'gradient';
gradient: 'angle';
/**
* For 'angle' gradient, specifies the direction of the gradient. 0 is from the left to the right.
* Values from 1 - 359 rotates the direction clockwise
*/
degree: number;
/**
* Specifies the gradient colour sequence. Is an array of objects containing position and
* color starting with position 0 and ending with position 1.
* Intermediary positions may be used to specify other colours on the path.
*/
stops: GradientStop[];
}
export interface FillGradientPath {
type: 'gradient';
gradient: 'path';
/**
* For 'path' gradient. Specifies the relative coordinates for the start of the path.
* 'left' and 'top' values range from 0 to 1
*/
center: { left: number; top: number };
/**
* Specifies the gradient colour sequence. Is an array of objects containing position and
* color starting with position 0 and ending with position 1.
* Intermediary positions may be used to specify other colours on the path.
*/
stops: GradientStop[];
}
export type Fill = FillPattern | FillGradientAngle | FillGradientPath;
export interface Font {
name: string;
size: number;
family: number;
scheme: 'minor' | 'major' | 'none';
charset: number;
color: Partial<Color>;
bold: boolean;
italic: boolean;
underline: boolean | 'none' | 'single' | 'double' | 'singleAccounting' | 'doubleAccounting';
strike: boolean;
outline: boolean;
}
export type BorderStyle =
| 'thin' | 'dotted' | 'hair' | 'medium' | 'double' | 'thick' | 'dashDot'
| 'dashDotDot' | 'slantDashDot' | 'mediumDashed' | 'mediumDashDotDot' | 'mediumDashDot';
export interface Color {
/**
* Hex string for alpha-red-green-blue e.g. FF00FF00
*/
argb: string;
/**
* Choose a theme by index
*/
theme: number;
}
export interface Border {
style: BorderStyle;
color: Partial<Color>;
}
export interface BorderDiagonal extends Border {
up: boolean;
down: boolean;
}
export interface Borders {
top: Partial<Border>;
left: Partial<Border>;
bottom: Partial<Border>;
right: Partial<Border>;
diagonal: Partial<BorderDiagonal>;
}
export interface Margins {
top: number;
left: number;
bottom: number;
right: number;
header: number;
footer: number;
}
export const enum ReadingOrder {
LeftToRight = 1,
RightToLeft = 2,
}
export interface Alignment {
horizontal: 'left' | 'center' | 'right' | 'fill' | 'justify' | 'centerContinuous' | 'distributed';
vertical: 'top' | 'middle' | 'bottom' | 'distributed' | 'justify';
wrapText: boolean;
indent: number;
readingOrder: 'rtl' | 'ltr';
textRotation: number | 'vertical';
}
export interface Style {
numFmt: string;
font: Partial<Font>;
alignment: Partial<Alignment>;
border: Partial<Borders>;
fill: Fill;
}
export type DataValidationOperator =
| 'between' | 'notBetween' | 'equal' | 'notEqual' | 'greaterThan' | 'lessThan'
| 'greaterThanOrEqual' | 'lessThanOrEqual';
export interface DataValidation {
type: 'list' | 'whole' | 'decimal' | 'date' | 'textLength' | 'custom';
formulae: any[];
allowBlank?: boolean;
operator?: DataValidationOperator;
error?: string;
errorTitle?: string;
errorStyle?: string;
prompt?: string;
promptTitle?: string;
showErrorMessage?: boolean;
showInputMessage?: boolean;
}
export interface CellErrorValue {
error: '#N/A' | '#REF!' | '#NAME?' | '#DIV/0!' | '#NULL!' | '#VALUE!' | '#NUM!';
}
export interface RichText {
text: string;
font?: Partial<Font>;
}
export interface CellRichTextValue {
richText: RichText[];
}
export interface CellHyperlinkValue {
text: string;
hyperlink: string;
}
export interface CellFormulaValue {
formula: string;
result?: number | string | Date | { error: CellErrorValue };
date1904: boolean;
}
export interface CellSharedFormulaValue {
sharedFormula: string;
readonly formula?: string;
result?: number | string | Date| { error: CellErrorValue };
date1904: boolean;
}
export const enum ValueType {
Null = 0,
Merge = 1,
Number = 2,
String = 3,
Date = 4,
Hyperlink = 5,
Formula = 6,
SharedString = 7,
RichText = 8,
Boolean = 9,
Error = 10
}
export const enum FormulaType {
None = 0,
Master = 1,
Shared = 2
}
export type CellValue =
| null | number | string | boolean | Date
| CellErrorValue
| CellRichTextValue | CellHyperlinkValue
| CellFormulaValue | CellSharedFormulaValue;
export interface CellModel {
address: Address;
style: Style;
type: ValueType;
text?: string;
hyperlink?: string;
value?: CellValue;
master: Cell;
formula?: string;
sharedFormula?: string;
result?: string | number | any;
}
export interface Cell extends Style, Address {
readonly worksheet: Worksheet;
readonly workbook: Workbook;
readonly effectiveType: ValueType;
readonly isMerged: boolean;
readonly master: Cell;
readonly isHyperlink: boolean;
readonly hyperlink: string; // todo
readonly text: string;
readonly fullAddress: {
sheetName: string;
address: Address;
row: Row;
col: Column;
};
model: CellModel;
/**
* Assign (or get) a name for a cell (will overwrite any other names that cell had)
*/
name: string;
/**
* Assign (or get) an array of names for a cell (cells can have more than one name)
*/
names: string[];
/**
* Cells can define what values are valid or not and provide
* prompting to the user to help guide them.
*/
dataValidation: DataValidation;
/**
* Value of the cell
*/
value: CellValue;
/**
* convenience getter to access the formula
*/
readonly formula: string;
/**
* convenience getter to access the formula result
*/
readonly result: number | string | Date;
/**
* The type of the cell's value
*/
readonly type: ValueType;
/**
* The type of the cell's formula
*/
readonly formulaType: FormulaType;
/**
* The styles of the cell
*/
style: Partial<Style>;
addName(name: string): void;
/**
* Remove a name from a cell
*/
removeName(name: string): void;
removeAllNames(): void;
destroy(): void;
toCsvString(): string;
release(): void;
addMergeRef(): void;
releaseMergeRef(): void;
merge(master: Cell): void;
unmerge(): void;
isMergedTo(master: Cell): boolean;
toString(): string;
}
export interface RowModel {
cells: CellModel[];
number: number;
min: number;
max: number;
height: number;
style: Partial<Style>;
hidden: boolean;
outlineLevel: number;
collapsed: boolean;
}
export interface Row extends Style {
readonly worksheet: Worksheet;
readonly hasValues: boolean;
readonly dimensions: number;
model: Partial<RowModel> | null;
/**
* Set a specific row height
*/
height: number;
/**
* Make row hidden
*/
hidden: boolean;
/**
* Get a row as a sparse array
*/
// readonly values: CellValue[];
values: CellValue[] | { [key: string]: CellValue };
/**
* Set an outline level for rows
*/
outlineLevel?: number;
/**
* The row number
*/
readonly number: number;
/**
* Indicate the collapsed state based on outlineLevel
*/
readonly collapsed: boolean;
/**
* Number of non-empty cells
*/
readonly cellCount: number;
/**
* Number of cells including empty ones
*/
readonly actualCellCount: number;
/**
* Get cell by number, column letter or column key
*/
getCell(indexOrKey: number | string): Cell;
findCell(colNumber: number): Cell | undefined;
getCellEx(address: Address): Cell;
/**
* Iterate over all non-null cells in a row
*/
eachCell(callback: (cell: Cell, colNumber: number) => void): void;
/**
* Iterate over all cells in a row (including empty cells)
*/
eachCell(opt: { includeEmpty: boolean }, callback: (cell: Cell, colNumber: number) => void): void;
/**
* Cut one or more cells (cells to the right are shifted left)
*
* Note: this operation will not affect other rows
*/
splice(start: number, count: number, ...insert: any[]): void;
/**
* Commit a completed row to stream
*/
commit(): void;
destroy(): void;
addPageBreak(lft?: number, rght?: number): void;
}
export interface Column {
/**
* Can be a string to set one row high header or an array to set multi-row high header
*/
header: string | string[];
/**
* The name of the properties associated with this column in each row
*/
key: string;
/**
* The width of the column
*/
width: number;
/**
* Set an outline level for columns
*/
outlineLevel: number;
/**
* Hides the column
*/
hidden: boolean;
/**
* Styles applied to the column
*/
style: Partial<Style>;
/**
* The cell values in the column
*/
values: ReadonlyArray<CellValue>;
}
export interface ColumnExtension extends Partial<Style> {
/**
* indicate the collapsed state based on outlineLevel
*/
readonly collapsed: boolean;
/**
* Iterate over all current cells in this column
*/
eachCell(callback: (cell: Cell, rowNumber: number) => void): void;
/**
* Iterate over all current cells in this column including empty cells
*/
eachCell(opt: { includeEmpty: boolean }, callback: (cell: Cell, rowNumber: number) => void): void;
}
export interface PageSetup {
/**
* Whitespace on the borders of the page. Units are inches.
*/
margins: Margins;
/**
* Orientation of the page - i.e. taller (`'portrait'`) or wider (`'landscape'`).
*
* `'portrait'` by default
*/
orientation: 'portrait' | 'landscape';
/**
* Horizontal Dots per Inch. Default value is 4294967295
*/
horizontalDpi: number;
/**
* Vertical Dots per Inch. Default value is 4294967295
*/
verticalDpi: number;
/**
* Whether to use fitToWidth and fitToHeight or scale settings.
*
* Default is based on presence of these settings in the pageSetup object - if both are present,
* scale wins (i.e. default will be false)
*/
fitToPage: boolean;
/**
* How many pages wide the sheet should print on to. Active when fitToPage is true
*
* Default is 1
*/
fitToWidth: number;
/**
* How many pages high the sheet should print on to. Active when fitToPage is true
*
* Default is 1
*/
fitToHeight: number;
/**
* Percentage value to increase or reduce the size of the print. Active when fitToPage is false
*
* Default is 100
*/
scale: number;
/**
* Which order to print the pages.
*
* Default is `downThenOver`
*/
pageOrder: 'downThenOver' | 'overThenDown';
/**
* Print without colour
*
* false by default
*/
blackAndWhite: boolean;
/**
* Print with less quality (and ink)
*
* false by default
*/
draft: boolean;
/**
* Where to place comments
*
* Default is `None`
*/
cellComments: 'atEnd' | 'asDisplayed' | 'None';
/**
* Where to show errors
*
* Default is `displayed`
*/
errors: 'dash' | 'blank' | 'NA' | 'displayed';
/**
* What paper size to use (see below)
*
* | Name | Value |
* | ----------------------------- | --------- |
* | Letter | `undefined` |
* | Legal | `5` |
* | Executive | `7` |
* | A4 | `9` |
* | A5 | `11` |
* | B5 (JIS) | `13` |
* | Envelope #10 | `20` |
* | Envelope DL | `27` |
* | Envelope C5 | `28` |
* | Envelope B5 | `34` |
* | Envelope Monarch | `37` |
* | Double Japan Postcard Rotated | `82` |
* | 16K 197x273 mm | `119` |
*/
paperSize: PaperSize;
/**
* Whether to show the row numbers and column letters, `false` by default
*/
showRowColHeaders: boolean;
/**
* Whether to show grid lines, `false` by default
*/
showGridLines: boolean;
/**
* Which number to use for the first page
*/
firstPageNumber: number;
/**
* Whether to center the sheet data horizontally, `false` by default
*/
horizontalCentered: boolean;
/**
* Whether to center the sheet data vertically, `false` by default
*/
verticalCentered: boolean;
/**
* Set Print Area for a sheet, e.g. `'A1:G20'`
*/
printArea: string;
/**
* Repeat specific rows on every printed page, e.g. `'1:3'`
*/
printTitlesRow: string;
}
export type AutoFilter = string | {
from: string | { row: number; column: number };
to: string | { row: number; column: number };
};
export interface Image {
extension: 'jpeg' | 'png' | 'gif';
base64?: string;
filename?: string;
buffer?: Buffer;
}
export interface IAnchor {
col: number;
row: number;
nativeCol: number;
nativeRow: number;
nativeColOff: number;
nativeRowOff: number;
}
export class Anchor implements IAnchor{
col: number;
nativeCol: number;
nativeColOff: number;
nativeRow: number;
nativeRowOff: number;
row: number;
private readonly colWidth: number;
private readonly rowHeight: number;
worksheet: Worksheet;
constructor(model: IAnchor|object = {});
}
export interface ImageRange {
tl: { col: number; row: number } | Anchor;
br: { col: number; row: number } | Anchor;
}
export interface Range extends Location {
sheetName: string;
tl: string;
$t$l: string;
br: string;
$b$r: string;
range: string;
$range: string;
shortRange: string;
$shortRange: string;
count: number;
decode(): void;
decode(v: Range): void;
decode(v: string): void;
decode(v: Location): void;
decode(top: number, left: number, bottom: number, right: number, sheetName?: string): void;
decode(tl: string, br: string, sheetName?: string): void;
decode(v: [string, string]): void;
decode(v: [string, string, string]): void;
decode(v: [number, number, number, number]): void;
decode(v: [number, number, number, number, string]): void;
expand(top: number, left: number, bottom: number, right: number): void;
expandRow(row: Row): void;
expandToAddress(addressStr: string): void;
toString(): string;
intersects(other: Range): boolean;
contains(addressStr: string): boolean;
containsEx(address: Partial<{
sheetName: string;
row: number;
col: number;
}>): boolean;
}
export interface RowBreak {
id: number;
max: number;
min: number;
man: number;
}
export interface WorksheetModel {
id: number;
name: string;
// dataValidations: this.dataValidations.model,
properties: WorksheetProperties;
pageSetup: Partial<PageSetup>;
rowBreaks: RowBreak[];
views: WorksheetView[];
autoFilter: AutoFilter;
media: Media[];
}
export type WorksheetState = 'visible' | 'hidden' | 'veryHidden';
export interface Worksheet {
readonly id: number;
name: string;
readonly workbook: Workbook;
readonly hasMerges: boolean;
readonly dimensions: Range[];
/**
* Contains information related to how a worksheet is printed
*/
pageSetup: Partial<PageSetup>;
/**
* Worksheet State
*/
state: WorksheetState;
/**
* Worksheet Properties
*/
properties: WorksheetProperties;
/**
* Open panes representing the sheet
*/
views: Array<Partial<WorksheetView>>;
/**
* Apply an auto filter to your worksheet.
*/
autoFilter?: AutoFilter;
destroy(): void;
/**
* A count of the number of rows that have values. If a mid-document row is empty, it will not be included in the count.
*/
readonly actualRowCount: number;
/**
* The total column size of the document. Equal to the maximum cell count from all of the rows
*/
readonly columnCount: number;
/**
* A count of the number of columns that have values.
*/
readonly actualColumnCount: number;
getColumnKey(key: string): Partial<Column>;
setColumnKey(key: string, value: Partial<Column>): void;
deleteColumnKey(key: string): void;
eachColumnKey(callback: (col: Partial<Column>, index: number) => void): void;
/**
* Access an individual columns by key, letter and 1-based column number
*/
getColumn(indexOrKey: number | string): Partial<Column> & ColumnExtension;
/**
* Cut one or more columns (columns to the right are shifted left)
* and optionally insert more
*
* If column properties have been definde, they will be cut or moved accordingly
*
* Known Issue: If a splice causes any merged cells to move, the results may be unpredictable
*
* Also: If the worksheet has more rows than values in the colulmn inserts,
* the rows will still be shifted as if the values existed
*/
spliceColumns(start: number, count: number, ...insert: any[][]): void;
/**
* Add column headers and define column keys and widths.
*
* Note: these column structures are a workbook-building convenience only,
* apart from the column width, they will not be fully persisted.
*/
columns: Array<Partial<Column>>;
/**
* The total row size of the document. Equal to the row number of the last row that has values.
*/
readonly rowCount: number;
/**
* Get the last editable row in a worksheet (or undefined if there are none)
*/
readonly lastRow: Row | undefined;
findRow(row: number): Row | undefined;
/**
* Cut one or more rows (rows below are shifted up)
* and optionally insert more
*
* Known Issue: If a splice causes any merged cells to move, the results may be unpredictable
*/
spliceRows(start: number, count: number, ...insert: any[][]): void;
/**
* Add a couple of Rows by key-value, after the last current row, using the column keys,
* or add a row by contiguous Array (assign to columns A, B & C)
*/
addRow(data: any[] | any): Row;
/**
* Add multiple rows by providing an array of arrays or key-value pairs
*/
addRows(rows: any[]): void;
/**
* Get or create row by 1-based index
*/
getRow(index: number): Row;
/**
* Iterate over all rows that have values in a worksheet
*/
eachRow(callback: (row: Row, rowNumber: number) => void): void;
/**
* Iterate over all rows (including empty rows) in a worksheet
*/
eachRow(opt: { includeEmpty: boolean }, callback: (row: Row, rowNumber: number) => void): void;
/**
* return all rows as sparse array
*/
getSheetValues(): Row[];
/**
* returns the cell at [r,c] or address given by r. If not found, return undefined
*/
findCell(r: number | string, c: number | string): Cell | undefined;