typedoc-plugin-markdown
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Markdown.
26 lines (25 loc) • 611 B
TypeScript
/**
* Contains constant default values used in options.
*
* @module
*/
/**
* Default values for `membersWithOwnFile` option.
*/
export declare const ALLOWED_OWN_FILE_MEMBERS: string[];
export declare const DEFAULT_PAGE_TITLES: {
index: string;
member: string;
module: string;
};
/**
* Default values for `textContentMappings` option.
*/
export declare const TEXT_CONTENT_MAPPINGS: {
'header.title': string;
'breadcrumbs.home': string;
'title.indexPage': string;
'title.memberPage': string;
'title.modulePage': string;
};
export declare const AVAILABLE_ROUTERS: string[];