/** * This file was auto-generated by Fern from our API Definition. */ /** * Notion Block object - fundamental content unit. * * Blocks can be: paragraph, heading_1, heading_2, heading_3, bulleted_list_item, * numbered_list_item, to_do, toggle, code, quote, callout, etc. */ export interface NotionBlock { /** Block type (paragraph, heading_1, heading_2, etc.) */ type: string; /** Block text content */ content: string; }