UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

9 lines (8 loc) 200 B
import { BaseBlock, RichText } from './base.types'; export interface BookmarkBlock extends BaseBlock { type: "bookmark"; bookmark: { url: string; caption: RichText[]; }; }