Getting this error when I use sheetName
in formulas
along with engine : HyperFormula from official documentation.
‘sheetName’ does not exist in type ‘DetailedSettings’
This is how I am setting <HotTable />
component.
<HotTable
...
data={data[key as keyof typeof data]}
formulas={{
engine: hyperformulaInstance,
sheetName: "MySheet",
}}
...
licenseKey="non-commercial-and-evaluation" // for non-commercial use only
/>
formulas is expecting DetailedSettings
which does not contain sheetName.