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
/
search
/
playerBySteamID.d.ts
8 lines
(7 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
PlayerBySteamID
as
IPlayerBySteamID
}
from
'../../types'
;
import
{
IRawSteamId
}
from
'../../types/raw/rawSteamId'
;
export
declare
class
PlayerBySteamID
implements
IPlayerBySteamID
{
brawlhallaID
:
number
;
name
:
string
;
constructor
(
data
:
IRawSteamId
); }