Skip to content

Commit c01a33d

Browse files
committed
adding comment
1 parent 4048242 commit c01a33d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plugins/processor.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { join } from "node:path";
55
* @param {import('typedoc-plugin-markdown').MarkdownApplication} app
66
*/
77
export function load(app) {
8-
// Merge `export=` namespaces into their parent
98
app.converter.on(Converter.EVENT_RESOLVE_BEGIN, (context) => {
9+
// Convert accessors to properties to simplify documentation
1010
context.project
1111
.getReflectionsByKind(ReflectionKind.Accessor)
1212
.forEach((accessor) => {
@@ -20,6 +20,7 @@ export function load(app) {
2020
}
2121
});
2222

23+
// Merge `export=` namespaces into their parent
2324
context.project
2425
.getReflectionsByKind(ReflectionKind.Namespace)
2526
.filter((ref) => ref.name === "export=")

0 commit comments

Comments
 (0)