UNPKG

@gobstones/typedoc-theme-gobstones

Version:

A simple theme for the Gobstones generated documentation.

17 lines 692 B
/** * @module Theme/Templates * @author Alan Rodas Bonjour <alanrodas@gmail.com> */ import type { DefaultThemeRenderContext, DocumentReflection } from 'typedoc'; import { JSX, PageEvent } from 'typedoc'; /** * The component that defines how to render a markdown document * page. Rendering documents other than the README use this template. * * @param context - The theme context. * @param props - A page event with the document's reflection. * * @returns A JSX.Element to render the markdown document. */ export declare const documentTemplate: (context: DefaultThemeRenderContext, props: PageEvent<DocumentReflection>) => JSX.Element; //# sourceMappingURL=documentTemplate.d.ts.map