-
Hi, /**
* This will not be included in the output, but it should be included.
*/
const saveUser = createServerFn({ method: "POST" })
.handler(async () => {
// ...
return {
// ...
}
}) Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Answered by
Gerrit0
Apr 1, 2025
Replies: 1 comment
-
TypeDoc is meant to document libraries, what you're doing really doesn't fall into its intended usage at all, so you will need a completely custom plugin to whatever library you're using -- I'm not familiar with it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
thefrana
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TypeDoc is meant to document libraries, what you're doing really doesn't fall into its intended usage at all, so you will need a completely custom plugin to whatever library you're using -- I'm not familiar with it.