--- import TableOfContents from "./toc"; import type { ConfigHeading, TypeTOC } from "./types.d.ts"; export interface Props { title?: string; headings?: ConfigHeading[]; types?: TypeTOC; mobile: boolean; } const { title, headings, types, mobile } = Astro.props; --- {(headings?.length ?? 0) + (types?.length ?? 0) != 0 &&
}