24 lines
393 B
Python
Raw Permalink Normal View History

2025-04-10 17:31:33 +08:00
from PikaObj import *
class MemChecker:
def max(self): ...
def now(self): ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
def getMax(self) -> float: ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
def getNow(self) -> float: ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
def resetMax(self): ...
class REPL:
def setEcho(self, echo: bool): ...
class SysObj:
pass