/** * Configuration for the docs-layout template component. */ export interface DocsLayoutMetadata { /** * Show the left sidebar navigation. * @default true */ showSidebar?: boolean; /** * Show the right table of contents. * @default true */ showToc?: boolean; /** * Width of the sidebar. * @default '260px' */ sidebarWidth?: string; /** * Width of the table of contents. * @default '220px' */ tocWidth?: string; /** * Maximum width of the main content area. * @default '900px' */ contentMaxWidth?: string; /** * Sticky header offset (for scroll calculations). * @default 0 */ headerOffset?: number; /** * Custom CSS class for the layout container. */ cssClass?: string; }