fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
24 lines (23 loc) • 601 B
TypeScript
import PartyMeta from './PartyMeta';
import type { PartySchema } from '../../../resources/structs';
import type ClientParty from './ClientParty';
/**
* Represents the client's party meta
*/
declare class ClientPartyMeta extends PartyMeta {
/**
* The party
*/
party: ClientParty;
/**
* @param party The party
* @param schema The schema
*/
constructor(party: ClientParty, schema: PartySchema);
/**
* Refreshes the member positions
*/
refreshSquadAssignments(): string | undefined;
updatePrivacy(): void;
}
export default ClientPartyMeta;