UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

9 lines (8 loc) 232 B
import { BaseBlock, RichText } from './base.types'; export interface NumberedListItemBlock extends BaseBlock { type: "numbered_list_item"; numbered_list_item: { rich_text: RichText[]; color: string; }; }