mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Fix exceljs column properties (#18406)
This commit is contained in:
parent
998cab7810
commit
e9a972592d
6
types/exceljs/index.d.ts
vendored
6
types/exceljs/index.d.ts
vendored
@ -501,17 +501,17 @@ 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[];
|
||||
header?: string | string[];
|
||||
|
||||
/**
|
||||
* The name of the properties associated with this column in each row
|
||||
*/
|
||||
key: string;
|
||||
key?: string;
|
||||
|
||||
/**
|
||||
* The width of the column
|
||||
*/
|
||||
width: number;
|
||||
width?: number;
|
||||
|
||||
/**
|
||||
* Set an outline level for columns
|
||||
|
||||
Loading…
Reference in New Issue
Block a user