File

src/app/spreadsheet/spreadsheet-data/models/cell.interfaces.ts

Index

Properties

Properties

id
id: number
Type : number
Optional
position
position: CellPosition
Type : CellPosition
value
value: CellValue
Type : CellValue
Optional
export type CellValue = string | number

export interface CellPosition {
    row: number
    column: number
}

export interface Cell {
    id?: number
    value?: CellValue
    position: CellPosition
}

result-matching ""

    No results matching ""