UNPKG
adventureland-gui
Version:
latest (0.1.5)
0.1.5
Basic UI for headless AdventureLand clients
github.com/StormSurge95/ALUI
StormSurge95/ALUI
adventureland-gui
/
build
/
alui
/
index.d.ts
5 lines
(4 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
import
{
Socket
}
from
"socket.io-client"
;
import
{
Character
}
from
"alclient"
;
export
declare
function
startServer
(
port
?:
number
):
Promise
<
void
>;
export
declare
function
addBot
(
id
:
string
,
socket
:
Socket
,
character
:
Character
):
void
;