import { Block } from '../Block' type TableOfContentsType = { color: string } export class TableOfContents extends Block { toHTML(): string { const tableOfContentsContext:TableOfContentsType = this.content as TableOfContentsType const color = tableOfContentsContext.color const classTags = ['notion', 'table_of_contents', color] return `
Table of contents
` } }