You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @description The type of block. For a table block, `type` is always `table`.
378
+
*/
379
+
type: 'table';
380
+
/**
381
+
* @description An array consisting of table rows. Maximum 100 rows. Each row object is an array with a max of 20 table cells. Table cells can have a type of raw_text or rich_text.
382
+
*/
383
+
rows: (RichTextBlock|RawTextElement)[][];
384
+
/**
385
+
* @description An array describing column behavior. If there are fewer items in the column_settings array than there are columns in the table, then the items in the the column_settings array will describe the same number of columns in the table as there are in the array itself. Any additional columns will have the default behavior. Maximum 20 items.
0 commit comments