massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / simplejson / simplejson / encoder.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/simplejson/simplejson/encoder.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/simplejson/simplejson/encoder.pyi
new file mode 100644 (file)
index 0000000..9a3c5e4
--- /dev/null
@@ -0,0 +1,9 @@
+from typing import Any
+
+class JSONEncoder(object):
+    def __init__(self, *args: Any, **kwargs: Any) -> None: ...
+    def encode(self, o: Any): ...
+    def default(self, o: Any): ...
+    def iterencode(self, o: Any, _one_shot: bool): ...
+
+class JSONEncoderForHTML(JSONEncoder): ...