--- import type { MarkdownHeading } from "astro"; import "@/styles/toc.css"; import WidgetLayout from "@/components/common/WidgetLayout.astro"; import I18nKey from "@/i18n/i18nKey"; import { i18n } from "@/i18n/translation"; interface Props { headings: MarkdownHeading[]; class?: string; style?: string; } const { headings: _headings = [], class: className, style } = Astro.props; ---