--- import type { MarkdownHeading } from "astro"; import { generateToc } from "@/utils"; import TOCHeading from "./TOCHeading.astro"; interface Props { headings: MarkdownHeading[]; } const { headings } = Astro.props; const toc = generateToc(headings); ---