(
buf: Union[Buffer, str],
*,
strict: bool = True,
dec_hook: Optional[Callable[[type, Any], Any]] = None,
)
| 112 | |
| 113 | @overload |
| 114 | def decode( |
| 115 | buf: Union[Buffer, str], |
| 116 | *, |
| 117 | strict: bool = True, |
| 118 | dec_hook: Optional[Callable[[type, Any], Any]] = None, |
| 119 | ) -> Any: |
| 120 | pass |
| 121 | |
| 122 | |
| 123 | @overload |
nothing calls this directly
no test coverage detected
searching dependent graphs…