massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / simplejson / simplejson / encoder.pyi
1 from typing import Any
2
3 class JSONEncoder(object):
4     def __init__(self, *args: Any, **kwargs: Any) -> None: ...
5     def encode(self, o: Any): ...
6     def default(self, o: Any): ...
7     def iterencode(self, o: Any, _one_shot: bool): ...
8
9 class JSONEncoderForHTML(JSONEncoder): ...