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
/
economy
/
index.d.ts
7 lines
(6 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Base
}
from
"../base"
;
export
declare
class
Economy
extends
Base
{
pay
(
uuid
:
string
,
amount
:
number
):
Promise
<
string
>;
debit
(
uuid
:
string
,
amount
:
number
):
Promise
<
string
>;
economy
():
Promise
<
string
>; }