I'm using Vue 3 with ag grid and want to know the type of a single row. The docs come up with examples like
rowData: [
{ make: "Toyota", model: "Celica", price: 35000 },
{ make: "Ford", model: "Mondeo", price: 32000 },
{ make: "Porsche", model: "Boxster", price: 72000 },
],
I would like to initialize the data array with an appropriate type but wasn't able to find one in the docs. I don't think it's an array of RowNodes but would like to avoid creating my own type, e.g. using const rowData: Record<string, unknown>[] = [];.
Does ag grid provide a type for a single row inside rowData?