UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

11 lines (10 loc) 252 B
import { BaseBlock, RichText } from './base.types'; export interface ToDoBlock extends BaseBlock { type: "to_do"; to_do: { rich_text: RichText[]; checked: boolean; color: string; children?: BaseBlock[]; }; }