You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to exclude from deno doc internal methods that must be public, such as [Symbol.dispose](). The @internal JSDoc tag doesn't prevent deno doc from including the tagged symbols in its output. Simply not documenting the method results in the deno doc linter complaining exported symbol is missing JSDoc documentation.
I'm trying to exclude from
deno doc
internal methods that must be public, such as[Symbol.dispose]()
. The@internal
JSDoc tag doesn't preventdeno doc
from including the tagged symbols in its output. Simply not documenting the method results in the deno doc linter complainingexported symbol is missing JSDoc documentation
.Repro JSR doc page: https://jsr.io/@dandv/timestamp-logger/doc/~/Logger#method_symbol_asyncdispose_0
Source code: mod.ts
private
symbols are also included in the documentation output, but fortunately#
private class fields are excluded.Version: Deno 2.2.11
The text was updated successfully, but these errors were encountered: