boxai.pyi 370 B

1234567891011121314151617181920
  1. from PikaObj import *
  2. def audioPlayUrl(url:str): ...
  3. def audioPlayPause(): ...
  4. def audioPlayStop(): ...
  5. def audioSetVol(vol:int): ...
  6. def audioGetVol()->int: ...
  7. class HttpClient:
  8. def __init__(self): ...
  9. def __del__(self): ...
  10. def seturl(self, url:str):
  11. pass
  12. def setbody(self, body:str):
  13. pass
  14. def setmethod(self, method:str):
  15. pass
  16. def start(self):
  17. pass