fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
20 lines (19 loc) • 539 B
TypeScript
import STWItem from './STWItem';
import type { STWProfileItemData } from '../../../resources/httpResponses';
import type Client from '../../Client';
/**
* Represents a Save The World profile's team perk
*/
declare class STWTeamPerk extends STWItem {
/**
* The team perk's ID
*/
teamPerkId: string;
/**
* @param client The main client
* @param id The item ID
* @param data The team perk data
*/
constructor(client: Client, id: string, data: STWProfileItemData);
}
export default STWTeamPerk;