UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

8 lines (7 loc) 181 B
import { BaseBlock, RichText } from './base.types'; export interface TableRowBlock extends BaseBlock { type: "table_row"; table_row: { cells: RichText[][]; }; }