Cell
The Cell
type is the data structure representing the data in a single cell.
string | number | boolean
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, or boolean.
Example
import type {Cell} from 'tinybase';
export const cell: Cell = 'dog';
Since
v1.0.0