UNPKG
brawlhalla-api-ts
Version:
latest (4.2.3)
4.2.3
4.2.2
4.2.1
4.2.0
4.1.1
4.1.0
4.0.19
4.0.18
4.0.17
4.0.16
4.0.15
4.0.14
4.0.13
4.0.12
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
TypeScript wrapper for the Brawlhalla API.
gitlab.com/BrawlDB/brawlhalla-api
brawlhalla-api-ts
/
models
/
clan
/
simpleClan.d.ts
10 lines
(9 loc)
•
307 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
SimpleClan
as
ISimpleClan
}
from
'../../types'
;
import
{
IPlayerStatsClan
}
from
'../../types/raw/rawPlayerStats'
;
export
declare
class
SimpleClan
implements
ISimpleClan
{
name
:
string
;
id
:
number
;
xp
:
number
;
personalXp
:
number
;
constructor
(
data
:
IPlayerStatsClan
); }