Skip to content

Commit 535d031

Browse files
committed
chore(typedoc): mark RequestHandlerExtra as intentionally not exported
AppToolCallback (introduced with the Standard Schema migration) references the local RequestHandlerExtra alias in its parameter type. The alias is a private Parameters<> derivation and isn't part of the public API surface, so add it to intentionallyNotExported alongside AppOptions/MethodSchema.
1 parent 282e9d1 commit 535d031

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

typedoc.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ const config = {
2828
],
2929
excludePrivate: true,
3030
excludeInternal: false,
31-
intentionallyNotExported: ["AppOptions", "MethodSchema"],
31+
intentionallyNotExported: [
32+
"AppOptions",
33+
"MethodSchema",
34+
"RequestHandlerExtra",
35+
],
3236
blockTags: [...OptionDefaults.blockTags, "@description"],
3337
jsDocCompatibility: {
3438
exampleTag: false,

0 commit comments

Comments
 (0)