Skip to main content

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.)

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/matrix/legacy.

For more information about our API support guarantees, see here.

Signature

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

Type Parameters

Parameter Description
T