Closed
Description
🐛 Bug Report
Typescript Types are wrong in Cell environment.
Lib version: 3.8.1
Detailed
index.d.ts line 406 says, that the Cell object has an property:
readonly fullAddress: {
sheetName: string;
address: string;
row: Row;
col: Column;
};
current JS
when I do:
console.log(myCell.fullAddress);
I get:
{
sheetName: string;
address: string;
row: string;
col: string
};