UNPKG
easy-api.ts
Version:
dev (2.2.0-bt)
latest (3.7.9)
3.7.9
3.7.8
3.7.7
3.7.6
3.7.5
3.7.0
3.6.5
3.6.2
3.6.1
3.6.0
3.5.7
3.5.6
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.2.1
3.2.0
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.2
3.0.1
2.2.2
2.2.1
2.2.0
2.2.0-bt
2.2.0-at
2.1.2
2.1.1
2.1.0
2.0.0
1.2.0
1.1.0
1.0.1-at
1.0.0
1.0.0-alphaT5
1.0.0-alphaT4
1.0.0-alphaT2
1.0.0-alphaT1
1.0.0-alpha
0.11.3
0.11.2
0.11.1
0.11.1-alpha2
0.11.1-alpha
0.10.9
0.10.8
0.10.5
0.10.3
0.10.2
0.10.1
A powerful library to create your own API with ease.
easy-api.ts
/
lib
/
classes
/
structures
/
Addon.d.ts
13 lines
(12 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
API
}
from
"./API"
;
/** * Represents an easy-api.ts add-on. */
export
declare
class
Addon
{
name
:
string
;
description
:
string
;
version
:
string
;
requiredVersions
:
string
[];
requiredAddons
:
string
[];
init
(
server
:
API
):
void
|
Promise
<
void
>; }