UNPKG

react-notion-blocks

Version:

A library for mapping Notion blocks to React components

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