@@ -230,7 +230,7 @@ export interface Font {
230230}
231231
232232export type BorderStyle =
233- | 'thin' | 'dotted' | 'hair' | 'medium' | 'double' | 'thick' | 'dashDot'
233+ | 'thin' | 'dotted' | 'hair' | 'medium' | 'double' | 'thick' | 'dashed' | ' dashDot'
234234 | 'dashDotDot' | 'slantDashDot' | 'mediumDashed' | 'mediumDashDotDot' | 'mediumDashDot' ;
235235
236236export type ColorIndexes = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
@@ -371,6 +371,7 @@ export interface Alignment {
371371
372372export interface Protection {
373373 locked : boolean ;
374+ hidden : boolean ;
374375}
375376
376377export interface Style {
@@ -426,19 +427,20 @@ export interface CellRichTextValue {
426427export interface CellHyperlinkValue {
427428 text : string ;
428429 hyperlink : string ;
430+ tooltip ?: string ;
429431}
430432
431433export interface CellFormulaValue {
432434 formula : string ;
433- result ?: number | string | Date | { error : CellErrorValue } ;
434- date1904 : boolean ;
435+ result ?: number | string | boolean | Date | CellErrorValue ;
436+ date1904 ? : boolean ;
435437}
436438
437439export interface CellSharedFormulaValue {
438440 sharedFormula : string ;
439441 readonly formula ?: string ;
440- result ?: number | string | Date | { error : CellErrorValue } ;
441- date1904 : boolean ;
442+ result ?: number | string | boolean | Date | CellErrorValue ;
443+ date1904 ? : boolean ;
442444}
443445
444446export declare enum ValueType {
@@ -1234,7 +1236,7 @@ export interface Worksheet {
12341236 /**
12351237 * Get the last column in a worksheet
12361238 */
1237- readonly lastColumn : Column ;
1239+ readonly lastColumn : Column | undefined ;
12381240
12391241 /**
12401242 * A count of the number of columns that have values.
@@ -1667,7 +1669,7 @@ export interface Xlsx {
16671669 write ( stream : import ( 'stream' ) . Stream , options ?: Partial < XlsxWriteOptions > ) : Promise < void > ;
16681670}
16691671
1670- // https://c2fo.io/fast-csv/docs/parsing/options
1672+ // https://c2fo.github. io/fast-csv/docs/parsing/options
16711673
16721674type HeaderArray = ( string | undefined | null ) [ ] ;
16731675type HeaderTransformFunction = ( headers : HeaderArray ) => HeaderArray ;
@@ -1708,7 +1710,7 @@ interface RowTransformFunction {
17081710 ( row : Rows ) : Rows ;
17091711}
17101712
1711- // https://c2fo.io/fast-csv/docs/formatting/options/
1713+ // https://c2fo.github. io/fast-csv/docs/formatting/options/
17121714export interface FastCsvFormatterOptionsArgs {
17131715 objectMode : boolean ;
17141716 delimiter : string ;
0 commit comments