fnbr
Version:
A library to interact with Epic Games' Fortnite HTTP and XMPP services
15 lines (14 loc) • 431 B
TypeScript
/**
* Represents an error thrown because the friendship invitee reached their friendship requests limit
*/
declare class InviteeFriendshipRequestLimitExceededError extends Error {
/**
* The query which resulted in this error
*/
query: string;
/**
* @param query The query which resulted in this error
*/
constructor(query: string);
}
export default InviteeFriendshipRequestLimitExceededError;