type DatasetRow = object;
index: number;
metadata: DatasetRowMetadata | null;
rowId: string;
values: ( | string | number | { [key: string]: null | string | number; } | null)[];
valuesDict: object;
[key: string]: | null | string | number | { [key: string]: null | string | number; }
Was this page helpful?