UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

8 lines (7 loc) 172 B
import { BaseBlock } from './base.types'; export interface LinkPreviewBlock extends BaseBlock { type: "link_preview"; link_preview: { url: string; }; }