UNPKG

@gobstones/typedoc-theme-gobstones

Version:

A simple theme for the Gobstones generated documentation.

17 lines 726 B
/** * @module Theme/Templates * @author Alan Rodas Bonjour <alanrodas@gmail.com> */ import { ContainerReflection, DefaultThemeRenderContext, JSX, PageEvent } from 'typedoc'; /** * The component that defines how to render any reflection element. * Any type of element to display, such as a module, class, function or other * uses this template as the main structure. * * @param context - The theme context. * @param props - A page event with the container's reflection. * * @returns A JSX.Element to render the reflection element. */ export declare const reflectionTemplate: (context: DefaultThemeRenderContext, props: PageEvent<ContainerReflection>) => JSX.Element; //# sourceMappingURL=reflectionTemplate.d.ts.map