Skip to main content
Version: v1

MatrixItem TypeAlias

A matrix cell value may be undefined (indicating an empty cell) or any serializable type, excluding null. (However, nulls may be embedded inside objects and arrays.)

Signature

export declare type MatrixItem<T> = Serializable<Exclude<T, null>> | undefined;

Type Parameters

Parameter Description
T