massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / simplejson / simplejson / decoder.pyi
1 from typing import Any, Match
2
3 class JSONDecoder(object):
4     def __init__(self, **kwargs: Any) -> None: ...
5     def decode(self, s: str, _w: Match[str], _PY3: bool): ...
6     def raw_decode(self, s: str, idx: int, _w: Match[str], _PY3: bool): ...