2022-06-15 06:20:34 +00:00
|
|
|
# api
|
2022-01-24 20:25:23 +08:00
|
|
|
from PikaObj import *
|
|
|
|
import PikaStdTask
|
|
|
|
|
|
|
|
|
2022-06-15 06:20:34 +00:00
|
|
|
def __init__(self): ...
|
|
|
|
|
|
|
|
|
2022-01-24 20:25:23 +08:00
|
|
|
class Task(PikaStdTask.Task):
|
2022-10-25 13:54:21 +08:00
|
|
|
def __init__(self): ...
|
2022-07-06 10:54:04 +08:00
|
|
|
def platformGetTick(self): ...
|
|
|
|
def returnNullString(self) -> str: ...
|
2022-09-07 14:15:45 +08:00
|
|
|
|
2022-09-09 13:10:20 +08:00
|
|
|
|
|
|
|
def test(a: int, b: object): ...
|
|
|
|
def test_dict() -> dict: ...
|
2022-09-14 12:30:23 +08:00
|
|
|
def test64(a: int64, b: int64) -> int64: ...
|
2022-11-04 14:23:54 +08:00
|
|
|
def test_raise(): ...
|
2022-09-23 14:10:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ProxyTest:
|
|
|
|
def __getattribute__(self, __name: str) -> any: ...
|
|
|
|
def __setattr__(self, __name: str, __value: any): ...
|
2022-11-24 01:36:31 +08:00
|
|
|
|
|
|
|
class _test:
|
|
|
|
def __init__(self):...
|