9 lines
197 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-06 09:13:27 +08:00
def getObjectItem(self, string: str) -> cJSON: ...