UNPKG

@ckeditor/typedoc-plugins

Version:
15 lines (14 loc) 708 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md. */ import { type Application } from "typedoc"; /** * The `typedoc-plugin-event-inheritance-fixer` takes care of inheriting events, which are not handled by TypeDoc by default. * * Event can be inherited from a class or from an interface. If a class or an interface fires an event, and it is a base for another * class or interface, then all events from the base reflection are copied and inserted into each derived reflection. * * The plugin takes care of events that are specified in parent classes too. */ export declare function typeDocEventInheritanceFixer(app: Application): void;