UNPKG

trn-rocket-league

Version:

Track any Rocket League player's stats with the Tracker Network API.

12 lines (11 loc) 308 B
import { ProfileStats } from './'; import type { LinkedAccount } from '../types'; export default class Profile { platform: string; username: string; avatarURL: string; countryCode: string; linkedAccounts: LinkedAccount[]; stats: ProfileStats; constructor(data: any); }