massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / simplejson / simplejson / decoder.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/simplejson/simplejson/decoder.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/simplejson/simplejson/decoder.pyi
new file mode 100644 (file)
index 0000000..0d726af
--- /dev/null
@@ -0,0 +1,6 @@
+from typing import Any, Match
+
+class JSONDecoder(object):
+    def __init__(self, **kwargs: Any) -> None: ...
+    def decode(self, s: str, _w: Match[str], _PY3: bool): ...
+    def raw_decode(self, s: str, idx: int, _w: Match[str], _PY3: bool): ...