UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

11 lines (10 loc) 249 B
import { BaseBlock } from './base.types'; export interface SyncedBlock extends BaseBlock { type: "synced_block"; synced_block: { synced_from: { block_id: string; } | null; children?: BaseBlock[]; }; }