diff --git a/index.d.ts b/index.d.ts index cfb3f12b4..541730170 100644 --- a/index.d.ts +++ b/index.d.ts @@ -388,7 +388,7 @@ export interface CellModel { text?: string; hyperlink?: string; value?: CellValue; - master: Cell; + master: string; formula?: string; sharedFormula?: string; result?: string | number | any; @@ -407,7 +407,7 @@ export interface Cell extends Style, Address { readonly text: string; readonly fullAddress: { sheetName: string; - address: Address; + address: string; row: Row; col: Column; }; @@ -614,9 +614,22 @@ export interface Column { * Column letter key */ readonly letter: string; -} + readonly number: number; + readonly worksheet: Worksheet; + readonly isCustomWidth: boolean; + readonly headers: string[]; + readonly isDefault: boolean; + readonly headerCount: number; + border: Partial; + fill: Fill; + numFmt: string + font: Partial; + alignment: Partial; + protection: Partial; + + toString(): string + equivalentTo(other: Column): boolean -export interface ColumnExtension extends Partial