Skip to content

Commit

Permalink
Update typedoc
Browse files Browse the repository at this point in the history
  • Loading branch information
buehlefs committed Jan 10, 2024
1 parent f9aa9b4 commit 49b3b3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ def _convert_all_nodes(self, root):
if root and "kindString" not in root:
root["kindString"] = "Module"

done = super()._convert_all_nodes(root)
# print([n for n in done])
return done
return super()._convert_all_nodes(root)

def _get_js_role_for_type(self, type_name: str, default_replacer=None):
for kind, replacer in TYPE_LINK_REPLACERS.items():
Expand Down Expand Up @@ -260,9 +258,6 @@ def _convert_node(self, node) -> Tuple[ir.TopLevel, List[dict]]:
file_name = source.get('fileName')
if file_name in DEFAULT_EXPORT_NAME_FIXES:
node['name'] = DEFAULT_EXPORT_NAME_FIXES[file_name]
if kind_string == 'Variable':
print(node["id"])
print(node.get("name"), "kind:", kind_string, "type:", node.get("type", {}).get("type"))
elif kind_string == 'Accessor':
get_signature = node.get('getSignature')
if get_signature and not isinstance(get_signature, list):
Expand Down
2 changes: 1 addition & 1 deletion docs/typedoc.json

Large diffs are not rendered by default.

0 comments on commit 49b3b3d

Please sign in to comment.