UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

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