9 lines
195 B
Python
Raw Normal View History

2022-06-02 12:07:24 +08:00
from PikaObj import *
class cJSON(TinyObj):
2022-06-02 14:23:55 +08:00
def print(self) -> str: ...
2022-06-02 16:50:31 +08:00
def parse(self, value: str): ...
def __del__(self): ...
2022-06-02 17:22:14 +08:00
def getObjectItem(self, string: str) -> any: ...