/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface GridCoordinate { /** * The sheet this coordinate is on. */ sheetId: number; /** * The row index of the coordinate. */ rowIndex: number; /** * The column index of the coordinate. */ columnIndex: number; } //# sourceMappingURL=GridCoordinate.d.ts.map