UNPKG

brawlhalla-api-ts

Version:

TypeScript wrapper for the Brawlhalla API.

12 lines (11 loc) 335 B
import { Clan as IClan } from '../../types'; import { RawClan } from '../../types/raw/rawClan'; import { ClanMember } from './clanMember'; export declare class Clan implements IClan { name: string; level: number; xp: number; creationDate: number; members: ClanMember[]; constructor(data: RawClan); }