UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

10 lines (9 loc) 260 B
import { BaseBlock, RichText } from './base.types'; export interface BulletedListItemBlock extends BaseBlock { type: "bulleted_list_item"; bulleted_list_item: { rich_text: RichText[]; color: string; }; children?: BaseBlock[]; }