/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { CellData } from './CellData'; export interface RowData { /** * The values in the row, one per column. */ values: CellData[]; } //# sourceMappingURL=RowData.d.ts.map