CellLocation is an interface that describes position inside the grid.
Definition
interface CellLocation {
    readonly rowId: Id;
    readonly columnId: Id;
}Properties
| Property name | Type | Property description | 
|---|---|---|
| rowId | Id | Row Idof cell location | 
| columnId | Id | Column Idof cell location |