We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4048242 commit c01a33dCopy full SHA for c01a33d
plugins/processor.mjs
@@ -5,8 +5,8 @@ import { join } from "node:path";
5
* @param {import('typedoc-plugin-markdown').MarkdownApplication} app
6
*/
7
export function load(app) {
8
- // Merge `export=` namespaces into their parent
9
app.converter.on(Converter.EVENT_RESOLVE_BEGIN, (context) => {
+ // Convert accessors to properties to simplify documentation
10
context.project
11
.getReflectionsByKind(ReflectionKind.Accessor)
12
.forEach((accessor) => {
@@ -20,6 +20,7 @@ export function load(app) {
20
}
21
});
22
23
+ // Merge `export=` namespaces into their parent
24
25
.getReflectionsByKind(ReflectionKind.Namespace)
26
.filter((ref) => ref.name === "export=")
0 commit comments