TableField

The Table field type used in Statamic.

Type Definition

Spreadsheet-like table data.

type 
TableField
= {
cells
: string[] }[];
Example Table field
type Table = TableField;
// Result: {
//   cells: string[];
// }[]