@codedoc/core
Version:
Create beautiful modern documentation websites.
10 lines (9 loc) • 475 B
TypeScript
import { RendererLike } from '@connectv/html';
import { ThemedComponentThis } from '@connectv/jss-theme';
import { CodedocTheme } from '../../theme';
export declare const HeadingStyle: import("@connectv/jss-theme").ThemedStyle<CodedocTheme>;
export interface HeadingOptions {
depth: number;
slug: string;
}
export declare function Heading(this: ThemedComponentThis<CodedocTheme>, options: HeadingOptions, renderer: RendererLike<any, any>, content: any): HTMLElement;