Skip to content

decoder ¤

This module contains a data decoder to convert TypeDoc's JSON to Python objects.

Classes:

TypedocDecoder ¤

TypedocDecoder(*args, **kwargs)

Bases: JSONDecoder

Source code in src/griffe_typedoc/decoder.py
508
509
510
511
def __init__(self, *args, **kwargs) -> None:
    kwargs["object_hook"] = self._object_hook
    super().__init__(*args, **kwargs)
    self._symbol_map: dict[int, Any] = {}