fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
25 lines (24 loc) • 590 B
TypeScript
import Meta from '../../util/Meta';
import type { Island, PartySchema } from '../../../resources/structs';
/**
* Represents a party's meta
*/
declare class PartyMeta extends Meta<PartySchema> {
/**
* The currently selected island
*/
get island(): Island | undefined;
/**
* The region ID (EU, NAE, NAW, etc.)
*/
get regionId(): string | undefined;
/**
* The custom matchmaking key
*/
get customMatchmakingKey(): string | undefined;
/**
* The squad fill status
*/
get squadFill(): boolean;
}
export default PartyMeta;