UNPKG

typedoc

Version:

Create api documentation for TypeScript projects.

27 lines (26 loc) 1.18 kB
import { RendererComponent } from "../components.js"; import type { Renderer } from "../index.js"; /** * A plugin that copies the subdirectory ´assets´ from the current themes * source folder to the output directory. */ export declare class AssetsPlugin extends RendererComponent { private accessor favicon; private accessor customCss; private accessor customJs; constructor(owner: Renderer); getTranslatedStrings(): { copy: import("../../internationalization/internationalization.js").TranslatedString; copied: import("../../internationalization/internationalization.js").TranslatedString; normally_hidden: import("../../internationalization/internationalization.js").TranslatedString; hierarchy_expand: import("../../internationalization/internationalization.js").TranslatedString; hierarchy_collapse: import("../../internationalization/internationalization.js").TranslatedString; }; private onRenderBegin; /** * Triggered before the renderer starts rendering a project. * * @param event An event object describing the current render operation. */ private onRenderEnd; }