UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

16 lines (15 loc) 348 B
import { BaseBlock, RichText } from './base.types'; export interface AudioBlock extends BaseBlock { type: "audio"; audio: { caption: RichText[]; type: "external" | "file"; external?: { url: string; }; file?: { url: string; expiry_time: string; }; }; }