import { GenerateDocsOptions, TypeDocPluginContext, TypeDocPluginOptions, TypeDocPluginResolvedConfig, TypeDocPluginUserConfig } from "./types/plugin.cjs"; import "./types/index.cjs"; import { Plugin } from "powerlines"; //#region src/index.d.ts declare module "powerlines" { interface Config { typedoc?: TypeDocPluginOptions; } } /** * A Powerlines plugin to assist in generating documentation with TypeDoc. */ declare function plugin(options?: TypeDocPluginOptions): Plugin; //#endregion export { GenerateDocsOptions, TypeDocPluginContext, TypeDocPluginOptions, TypeDocPluginResolvedConfig, TypeDocPluginUserConfig, plugin }; //# sourceMappingURL=index.d.cts.map