UNPKG
servertap-js
Version:
latest (0.0.1-dev)
0.0.1
0.0.1-dev
A TypeScript library for working with the ServerTap API
servertap-js
/
dist
/
chat
/
index.d.ts
6 lines
(5 loc)
•
193 B
TypeScript
View Raw
1
2
3
4
5
6
import { Base }
from
"../base"
; export
declare
class
Chat
extends
Base
{
broadcast
(
message
:
string
): Promise<
string
>;
tell
(
playerUuid
:
string
,
message
:
string
): Promise<
string
>; }