gitextract_jnq5w43z/ ├── .editorconfig ├── .github/ │ ├── codecov.yml │ ├── dependabot.yml │ └── workflows/ │ ├── check_ts.yml │ ├── ci.yml │ ├── release.yml │ └── test_report.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── biome.json ├── noxfile.py ├── pyproject.toml ├── sphinx_js/ │ ├── __init__.py │ ├── analyzer_utils.py │ ├── directives.py │ ├── ir.py │ ├── js/ │ │ ├── cli.ts │ │ ├── convertTopLevel.ts │ │ ├── convertType.ts │ │ ├── importHooks.mjs │ │ ├── ir.ts │ │ ├── main.ts │ │ ├── package.json │ │ ├── redirectPrivateAliases.ts │ │ ├── registerImportHook.mjs │ │ ├── sphinxJsConfig.ts │ │ ├── tsconfig.json │ │ ├── typedocPatches.ts │ │ └── typedocPlugin.ts │ ├── jsdoc.py │ ├── parsers.py │ ├── py.typed │ ├── renderers.py │ ├── suffix_tree.py │ ├── templates/ │ │ ├── attribute.rst │ │ ├── class.rst │ │ ├── common.rst │ │ └── function.rst │ └── typedoc.py └── tests/ ├── __init__.py ├── conftest.py ├── roots/ │ ├── test-incremental_js/ │ │ ├── a.js │ │ ├── a.rst │ │ ├── a_b.rst │ │ ├── b.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── inner/ │ │ │ └── b.js │ │ ├── jsdoc.json │ │ └── unrelated.rst │ └── test-incremental_ts/ │ ├── a.rst │ ├── a.ts │ ├── a_b.rst │ ├── b.rst │ ├── conf.py │ ├── index.rst │ ├── inner/ │ │ └── b.ts │ ├── tsconfig.json │ └── unrelated.rst ├── sphinxJsConfig.ts ├── test.ts ├── test_build_js/ │ ├── source/ │ │ ├── code.js │ │ ├── docs/ │ │ │ ├── autoattribute.rst │ │ │ ├── autoattribute_deprecated.rst │ │ │ ├── autoattribute_example.rst │ │ │ ├── autoattribute_see.rst │ │ │ ├── autoclass.rst │ │ │ ├── autoclass_alphabetical.rst │ │ │ ├── autoclass_deprecated.rst │ │ │ ├── autoclass_example.rst │ │ │ ├── autoclass_exclude_members.rst │ │ │ ├── autoclass_members.rst │ │ │ ├── autoclass_members_list.rst │ │ │ ├── autoclass_members_list_star.rst │ │ │ ├── autoclass_no_paramnames.rst │ │ │ ├── autoclass_private_members.rst │ │ │ ├── autoclass_see.rst │ │ │ ├── autofunction_callback.rst │ │ │ ├── autofunction_defaults_code.rst │ │ │ ├── autofunction_defaults_doclet.rst │ │ │ ├── autofunction_deprecated.rst │ │ │ ├── autofunction_destructured_params.rst │ │ │ ├── autofunction_example.rst │ │ │ ├── autofunction_explicit.rst │ │ │ ├── autofunction_long.rst │ │ │ ├── autofunction_minimal.rst │ │ │ ├── autofunction_see.rst │ │ │ ├── autofunction_short.rst │ │ │ ├── autofunction_static.rst │ │ │ ├── autofunction_typedef.rst │ │ │ ├── autofunction_variadic.rst │ │ │ ├── avoid_shadowing.rst │ │ │ ├── conf.py │ │ │ ├── getter_setter.rst │ │ │ ├── index.rst │ │ │ ├── injection.rst │ │ │ ├── union.rst │ │ │ └── unwrapped.rst │ │ └── more_code.js │ └── test_build_js.py ├── test_build_ts/ │ ├── source/ │ │ ├── class.ts │ │ ├── docs/ │ │ │ ├── async_function.rst │ │ │ ├── autoclass_class_with_interface_and_supers.rst │ │ │ ├── autoclass_constructorless.rst │ │ │ ├── autoclass_exported.rst │ │ │ ├── autoclass_interface_optionals.rst │ │ │ ├── autoclass_star.rst │ │ │ ├── automodule.rst │ │ │ ├── autosummary.rst │ │ │ ├── conf.py │ │ │ ├── deprecated.rst │ │ │ ├── example.rst │ │ │ ├── getset.rst │ │ │ ├── index.rst │ │ │ ├── inherited_docs.rst │ │ │ ├── predicate.rst │ │ │ ├── sphinx_link_in_description.rst │ │ │ ├── symbol.rst │ │ │ └── xrefs.rst │ │ ├── empty.ts │ │ ├── module.ts │ │ ├── tsconfig.json │ │ └── typedoc.json │ └── test_build_ts.py ├── test_build_xref_none/ │ ├── source/ │ │ ├── docs/ │ │ │ ├── conf.py │ │ │ └── index.rst │ │ └── main.ts │ └── test_build_xref_none.py ├── test_common_mark/ │ ├── source/ │ │ ├── code.js │ │ └── docs/ │ │ ├── conf.py │ │ └── index.md │ └── test_common_mark.py ├── test_dot_dot_paths/ │ ├── source/ │ │ ├── code.js │ │ └── docs/ │ │ ├── conf.py │ │ └── index.rst │ └── test_dot_dot_paths.py ├── test_incremental.py ├── test_init.py ├── test_ir.py ├── test_jsdoc_analysis/ │ ├── source/ │ │ ├── class.js │ │ └── function.js │ └── test_jsdoc.py ├── test_parsers.py ├── test_paths.py ├── test_renderers.py ├── test_suffix_tree.py ├── test_testing.py ├── test_typedoc_analysis/ │ ├── source/ │ │ ├── exports.ts │ │ ├── nodes.ts │ │ ├── subdir/ │ │ │ └── pathSegments.ts │ │ ├── tsconfig.json │ │ └── types.ts │ └── test_typedoc_analysis.py └── testing.py