I am facing the same issue mentioned in the following
node_modules/handsontable/handsontable"’ has no exported member ‘GridSettings’.
I am using handsontable version 7.1.0 with
“@handsontable/angular”: “5.1.0”.
I am using import like
import { HotTableRegisterer } from ‘@handsontable/angular’;
import * as Handsontable from ‘handsontable’;
if I use it like
import { Handsontable } from ‘handsontable’;
its say no exportable member name Handsontable
While if i use it combining with handsontable-pro, its working.
import { HotTableRegisterer } from ‘@handsontable/angular’;
import { Handsontable } from ‘handsontable-pro’;
Please help.