TinyBase logoTinyBase

Cell

The Cell type is the data structure representing the data in a single cell.

string | number | boolean | null

A Cell is used when setting a cell with the setCell method, and when getting it back out again with the getCell method. A Cell is a JavaScript string, number, boolean; or null since v7.0.

Example

import type {Cell} from 'tinybase';

export const cell: Cell = 'dog';

Since

v1.0.0