ResultCell
The ResultCell type is the data structure representing a single cell in the results of a query.
string | number | booleanA ResultCell is typically accessed with the getResultCell method or addResultCellListener method. It is similar to the Cell type in the store module, but without schema-specific typing, and is a JavaScript string, number, or boolean.
Example
import type {ResultCell} from 'tinybase';
export const resultCell: ResultCell = 'dog';
Since
v2.0.0