typedoc-plugin-merge-modules
Version:
Plugin for TypeDoc that merges the content of modules.
13 lines (12 loc) • 477 B
TypeScript
import type { Application } from "typedoc";
import type { PluginConfig } from "./plugin_options.js";
/**
* Type that can be intersected with TypeDoc's config type to have static type checking for the plugin's configuration.
* Check out the README.md for an example.
*/
export type Config = PluginConfig;
/**
* Initializes the plugin.
* @param app Reference to the application that is loading the plugin.
*/
export declare function load(app: Readonly<Application>): void;