We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1013eb + 6ae40d1 commit 880e455Copy full SHA for 880e455
2 files changed
package/boxai/boxai.pyi
@@ -0,0 +1,20 @@
1
+from PikaObj import *
2
+
3
+def audioPlayUrl(url:str): ...
4
+def audioPlayPause(): ...
5
+def audioPlayStop(): ...
6
+def audioSetVol(vol:int): ...
7
+def audioGetVol()->int: ...
8
9
+class HttpClient:
10
+ def __init__(self): ...
11
+ def __del__(self): ...
12
13
+ def seturl(self, url:str):
14
+ pass
15
+ def setbody(self, body:str):
16
17
+ def setmethod(self, method:str):
18
19
+ def start(self):
20
0 commit comments