Reputation: 55
I am getting ../ag-grid-enterprise/main has no exported member grid/grid-options.
import { Grid, GridOptions } from "ag-grid-enterprise";
I have installed ag-grid-enterprise version and already mentioned license key
Upvotes: 1
Views: 1671
Reputation: 2510
Module ag-grid-enterprise
does not have these members.
GridOptions
exist in other module.
try next import:
import { GridOptions } from '@ag-grid-community/core';
ps: v.23
Upvotes: 1