mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
27 lines
516 B
Python
27 lines
516 B
Python
# api
|
|
from PikaObj import *
|
|
import PikaStdTask
|
|
|
|
|
|
def __init__(self): ...
|
|
|
|
|
|
class Task(PikaStdTask.Task):
|
|
def __init__(self): ...
|
|
def platformGetTick(self): ...
|
|
def returnNullString(self) -> str: ...
|
|
|
|
|
|
def test(a: int, b: object): ...
|
|
def test_dict() -> dict: ...
|
|
def test64(a: int64, b: int64) -> int64: ...
|
|
def test_raise(): ...
|
|
|
|
|
|
class ProxyTest:
|
|
def __getattribute__(self, __name: str) -> any: ...
|
|
def __setattr__(self, __name: str, __value: any): ...
|
|
|
|
class _test:
|
|
def __init__(self):...
|